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?

#3055
admin
Keymaster

The default fancybox z-index is 8020 defined in:

http://kwasi.com/sample/css/fancybox.css

and the default SmartMenus z-index is 9999 defined in:

http://kwasi.com/sample/css/sm-core-css.css

So to fix the issue you would need to set your main menu’s z-index to something lower than 8020 – e.g. you could use something like this:

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