Ben Clarke
Ben Clarke

Reputation: 256

Order menu bar drop down on ASP.NET web page

I have a menu bar on my ASP.NET page and some of the content in the Menu bar has drop downs with more results. When I hover over some of the content in the menu bar which shows a drop down, the drop down is ordered to be behind everything on the page, meaning I cannot see what content is being shown.

Here is an example:

enter image description here

Is there a way I can get the menu bar to appear above the other information?

Upvotes: 0

Views: 164

Answers (1)

HapyUser
HapyUser

Reputation: 264

u could use z-index in menu css file

z-index:999;

Upvotes: 1

Related Questions