Make LI element show up on top of the other elements?

Hi,

I’m almost finished with my WordPress theme … but I found an issue with my menu system:

My Website Designers Blog

If you hover over the “Categories” menu item (below the logo), you will see that it “dissapears” behind the code part of that page.

Is there something I should be doing to make it show “over” the code box?

EDIT: for some reason its still showing the old design for me in IE and Chrome, but not FF! The design is orange in color - so if you are seeing the greyish version for some reason, thats the old design. Not quite sure why thats happening - just having a look into it now

TIA!

Andy

Try adding a high z-index and position:relative to the menu.

e.g.


#top_menu {
    font-size: 14px;
[B]    position: relative;[/B]
[B]    z-index: 999;[/B]


}


Why did your link first take me to a completely different page?

Thanks, that works like a dream :smiley:

Cheers

Andy