Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Menu overlays on top of a popup page..... how to stop?

Home Forums Older releases 1.0.x Menu overlays on top of a popup page..... how to stop? Reply To: Menu overlays on top of a popup page..... how to stop?

#3071
admin
Keymaster

You need to include the following CSS rule in some way on your page:

#main-menu {
	z-index:8000;
}

You could add it to an external CSS file and link it on your page or even include it directly in your page source like this:

<style type="text/css">
#main-menu {
	z-index:8000;
}
</style>