CSS .no-bullets { list-style-type: none; } Copy Now, only lists with the class no-bullets will have their bullet points removed. Using IDs IDs target one specific list on your website. Use these when you need unique styling for a single list. Add an ID to your HTML HTML <ul id=...
First of all, remove the bullets with the "none" value of the list-style-type property. Then, remove the left-indentation constantly across all browsers by setting both padding and margin to "0" for the <ul> element. Set a background image for the <li> elements with the CSS background...
This is mine. Bu ti don't think it's version related.
I am am having trouble removing list bullets on my on line resume. I have tried the following : .nobull { list-style: none; list-style-type: none; } -And clearing my browser cache. Here in a link to the resume. -Does your list (ul or ol), or the child li elements have the ...