
Since upgrading to 33.0 all bullet points now appear as numbers, does anyone know how to correct this issue?
Just upgraded Firefox to 33.0, now when looking at a listing on my web site the description information now shows numbers instead of bullet points. This is only happening in firefox and not with other browsers. Is there a way to correct this or is this a bug? Below is example url http://www.collarplanetonline.com/red-plaid-scottie-pups-adjustable-nylon-ribbon-dog-collar/
Chosen solution
bullet is an invalid property value for list-style-type.
What is being used instead is not specified and can possibly be different than the default disc
ul {list-style-type: bullet; margin-left:50px;}
It works if I disable this style rule.
Read this answer in context 👍 1All Replies (3)
This forum is intended for user support, not for web development issues. Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The contributors over there are more knowledgeable about web page development issues with Firefox. http://forums.mozillazine.org/viewforum.php?f=25 You'll need to register and login to be able to post in that forum.
Chosen Solution
bullet is an invalid property value for list-style-type.
What is being used instead is not specified and can possibly be different than the default disc
ul {list-style-type: bullet; margin-left:50px;}
It works if I disable this style rule.
Thank you for the information, I appreciate it