Frank Martin
Frank Martin

Reputation: 3441

Chrome showing "bullet" with each item in top menu

I have been trying to solve this problem for more than 2 hours now but no luck. I have a top menu (based on UL/LI) which displays fine in IE and Firefox but on Chrome it is showing "bullet" besides each item. Please check the following screenshot, you will see bullet on left side with LINK1, LINK2 and LINK3.

enter image description here

What I have been able to ascertain so far that I need to add some code in CSS to remove this and not DELETE code from CSS because I deleted all relevant code from CSS but these bullets were still showing so may be I need to write some property which will override and won't show these bullets in Chrome!?

Upvotes: 1

Views: 173

Answers (1)

Slavenko Miljic
Slavenko Miljic

Reputation: 3856

Some code would be helpful but for starters:

ul, ul li{list-style:none;}

Upvotes: 2

Related Questions