Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Bullet Points Improperly Displaying in Main Menu WordPress

  • SOLVED

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.

Answers (2)

2013-10-03

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!

2013-10-03

Plugarized answers:

add the the following list-style-type: none; to #top-menu li in style.css line 118

Preview: