Link to home
Create AccountLog in
Avatar of Mike Waller
Mike WallerFlag for United States of America

asked on

Using CSS, remove bullets in top menu tabs

Hi there. On my site here, http://buffaloball.org/buffalo-ball-bishop-machebeuf-high-school-sponsorships/ I need to remove the bullets that are above each menu tab at the top. Any ideas?
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

Add
<ul style="list-style: none;">

Open in new window

See example here
http://jsfiddle.net/x28564kv/
Avatar of Mike Waller

ASKER

Hi Shaun. I tried that but it didn't work.
Mark it as !Important
tried that but no luck:

ul {
  list-style-type: none !important;
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Best solution