I installed a slider menu here: http://www.blogspot.moments-preserved.com/?page_id=43 I have html like this: <div id="imageMenu"> <ul> <!-- THESE ARE THE LINKS YOU GO TO WHEN YOU CLICK ON A SLIDING DOOR IMAGE--> <!-- change the href to look like this: <a href="yourlink.com"> --> <li class="bk1"><a href="/edit-with-category-or-page">Category 1</a></li> <li class="bk2"><a href="/edit-with-category-or-page">Category 2</a></li> <li class="bk3"><a href="/edit-with-category-or-page">Category 3</a></li> <li class="bk4"><a href="/edit-with-category-or-page">Category 4</a></li> <li class="bk5"><a href="/edit-with-category-or-page">Category 5</a></li> <li class="bk6"><a href="/edit-with-category-or-page">Category 6</a></li> <li class="bk7"><a href="/edit-with-category-or-page">Category 7</a></li> </ul> </div> Code (markup): the container of course is "imageMenu", this is the CSS that should make the bullets go away: #imageMenu ul { list-style: none; margin: 0px; display: block; height: 440px; padding: 0; } #imageMenu ul li { float: left; border-bottom-style: solid; border-bottom-width: 1px; padding-bottom: 12px; padding-top: 12px; list-style-type: none; } you see I have both list-style: none; and list-style-type: none; in the other. I can actually use the firebug extension in firefox and show that the #imageMenu css property is listing "list-style-type: none;" properly for the li's - and yet both Firefox and IE on both Linux and Windows ignore that declaration (even with !important). I don't get it, the exact same menu works perfectly on another site. I have reverted to the default wordpress theme and disabled ALL plugins and the problem still exists. view the source of the page to get the CSS URL's if you want to check for anything canceling something out (if there was I couldn't see it). ANY help would be GREATLY appreciated - I've tried everything with these to get the list styles to go away on the li's.
Try adding this to your stylesheet instead, as a shortcut method to something that will surely work.. .bk1 li, .bk2 li, .bk3 li, .bk4 li, .bk5 li, .bk6 li, .bk7 li { list-style-type: none; } HTML:
It's from style.css from the theme. .Post ul li { padding:0px 0 0px 13px; [B] background-image: url(‘images/PostBullets.png');[/B] background-repeat:no-repeat; margin:0.5em 0 0.5em 0; line-height:1.2em; } Code (markup):