Bullet points are displaying in the main navigation menu for my website at http://southgeorgiahouseofhope.org. I recently put in a CSS class to format bullet lists in pages and posts and that must have caused the bullets to show up in the main nav as well. I tried to create a new class "no-bullets" and apply to menu-item, but that did not work.
Sébastien | French WordpressDesigner answers:
add
list-style:none at line 118 in styles.css
replace
#top-menu li {
float: left;
font-weight: bold;
list-style: none outside none;
padding-left: 17px;
text-transform: uppercase;
}
by
#top-menu li {
float: left;
font-weight: bold;
list-style: none outside none;
padding-left: 17px;
text-transform: uppercase;
list-style:none
}
Anne Shenton comments:
That worked! Thanks!
Plugarized answers:
add the the following list-style-type: none; to #top-menu li in style.css line 118
Preview: