Reputation: 297
I have a web page with the main menu on the top. Then on individual pages, I have a table with some textboxes, etc in the table. When I mouse hover above the menu to get the drop down, it hides behind my textboxes, etc. Now it does this on some pages and not on others, and each page is basically contructed the same way. So I'm kind of lost.
Help?
Here is a pic of whats going on:
Upvotes: 3
Views: 9441
Reputation: 2156
Set the z-index of menu drop down div to 9999:
#menuDropDown {
z-index: 9999;
}
Upvotes: 4
Reputation: 1509
I think you're talking about CSS z-index
have a read of this tutorial on the subject
Upvotes: 2