PDA

View Full Version : CSS combo dropdown getting corky in Firefox


Defiantdezign
03-19-2008, 05:53 AM
I feel horrible being lazy and not finding away around this myself, but i have an issue that has been plaguing me for weeks. This is regarding unique menu which i developed for a client, it is all css, combo suckerfish and a few other random pieces. The site is www.leadingtowar.com, (http://www.leadingtowar.com) on the homepage you will see a list in the middle of the page. On rollover of any of these list items you will see a small text description below it along with a yellow dot to the left of the list item. That works fine, my issue is another yellow dot pops up next to the small text description when it is rolled over in Firefox. This happens because the description is nested within the main list item, but i don't want this and it doesn't appear in Safari or IE. Any insight would be very helpful.

Here is an example of how one of the list items are set up:

<ul id="navmenu-h">
<li><a href="items_note.php">&nbsp;<strong style="font-size:13px;">Items of Note</strong></a>
<ul>
<li style="clear:both;font-size:10px;text-indent:-8px;"><a>Other topics of interest</a></li>
</ul>
</li>
</ul>

effpeetee
03-19-2008, 04:20 PM
It seems OK to me.:D

Frank

maxvee8
03-19-2008, 04:27 PM
have you put list style none on the nested ul look at the code.. but i sujest a style sheet and a class if you havent done so. should remove the bullet point if you add that to your nested ul

<ul id="navmenu-h">
<li><a href="items_note.php">&nbsp;<strong style="font-size:13px;">Items of Note</strong></a>
<ul style="list-style:none;">
<li style="clear:both;font-size:10px;text-indent:-8px;"><a>Other topics of interest</a></li>
</ul>
</li>
</ul>

bazz
03-19-2008, 04:27 PM
Hi,

You might like to try assiging a vlaue to your flyout portion like this:

list-style-type: none;

That should remove the yellow dot beside the flown-over parts.

bazz

bazz
03-19-2008, 04:28 PM
heh, we posted at the same time :)

I like your sig.

bazz

maxvee8
03-19-2008, 04:29 PM
thanks, yeah lol just noticed haha

Defiantdezign
03-19-2008, 04:47 PM
Thanks Bazz, ill give that a try.