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.

Re: SmartMenus with JQuery BlockUI plugin

Home Forums Older releases 0.9.x SmartMenus with JQuery BlockUI plugin Re: SmartMenus with JQuery BlockUI plugin

#1560
admin
Keymaster

Hi,

You will need to tweak the z-index for either your menu tree or BlockUI. By default the menu tree uses 9999 – i.e.:

	#main-menu {
		position:relative;
		z-index:9999;
		width:auto;
	}

and, as far as I can see, BlockUI uses 1000.

So you could either use something like:

	#main-menu {
		position:relative;
		z-index:500;
		width:auto;
	}

or this option for BlockUI:

$.blockUI({ baseZ: 15000 });

Cheers!