Menu items displaying behind other controls

BOA_Dev

Active member
Joined
Feb 16, 2007
Messages
32
Programming Experience
1-3
I have a menu in the upper left corner of the form and a few text boxes to the right of it. When I scroll over a menu item a sub menu will pop up however this sub menu is being overlapped by the textboxes on my form. In visual web developer I sent the menu to the front and the text boxes to the back. This changed the z index of the menu to 100 and the z index of the text boxes(which are inside a formview) to 99. But the menu items are still being overlapped by the textboxes.

I want the menu items of the sub menu to display on top of the text boxes not behind. Anyone know what could be going wrong?
 
Are you using any CSS, specifically the z-index property?
If you are using CSS styles for your menu (I'm assuming the standard ASP.NET menu control), try setting the z-index property for the CSS style to a high number, something like 1000.
 
Back
Top