list-style-type: none Not Working on FireFox Browser

By: PowAxx | September 21, 2009 at 10:28 am | Posted in Web Design
Tags: ,
About: CSS code “list-style-type: none” should remove bullets on web browser. But this code seems to not work correctly on some versions of FireFox.

If you are having problems with CSS code and the “list-style-type: none” that supposed to hide bullets is not rendering correctly in FireFox, you may be missing additional code. Usually code to hide bullets are:

#sidebar ul li a  {
list-style-type: none;
list-style-image: none;
}

Adding this additional CSS entries below can make those unwanted bullets to hide in FireFox browser.

#sidebar ul  {
list-style-type: none;
list-style-image: none;
}

Leave Comment