John
John

Reputation: 297

Menu showing behind textboxes, labels. ASP.NET/C#

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:

enter image description here


Upvotes: 3

Views: 9441

Answers (3)

Carls Jr.
Carls Jr.

Reputation: 3078

I take a look on my example

Bring element to front/back

Upvotes: 0

Achinth Gurkhi
Achinth Gurkhi

Reputation: 2156

Set the z-index of menu drop down div to 9999:

#menuDropDown {
    z-index: 9999;
}

Upvotes: 4

Dan
Dan

Reputation: 1509

I think you're talking about CSS z-index

have a read of this tutorial on the subject

Upvotes: 2

Related Questions