Hi everyone - I just installed a theme and noticed that the drop down menus disappear behind the page content. You can see it at http://www.robertocerini.com
Can someone suggest a way to fix it?
Thanks,
Rob
Hi everyone - I just installed a theme and noticed that the drop down menus disappear behind the page content. You can see it at http://www.robertocerini.com
Can someone suggest a way to fix it?
Thanks,
Rob
Edit style.css (line 212) and change:
ul#category-list li {
float:left;
font-family:Tahoma,Geneva,sans-serif;
margin:3px;
padding:5px 7px 3px;
}
to
ul#category-list li {
float:left;
font-family:Tahoma,Geneva,sans-serif;
margin:3px;
padding:5px 7px 3px;
position:relative;
z-index:500;
}Unfortunately that actually messes up the menu when you have a nested drop down AND only works with googleads.
Any other thoughts?
Roberto
Unfortunately that actually messes up the menu when you have a nested drop down
Are you sure? I actually tried it out on your site using Firebug and it worked fine for me.
AND only works with googleads
Whatever gave you that idea? CSS works with whatever is on the page.
You must log in to post.