$wgEnableMWSuggest

If you are having problems with GuMax, post here.
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: $wgEnableMWSuggest

Post by Paul »

Jonathan... I tested in my dev wiki, it's working fine.

Can you check my dev wiki: http://dev.paulgu.com and let me know...
User avatar
Jonathan
Rank 6
Rank 6
Posts: 33
Joined: April 6th, 2009, 8:19 pm

Re: $wgEnableMWSuggest

Post by Jonathan »

It was my fault. I had put a Google search bar under yours, and kept the id="searchform" in it... when I removed that, the suggestions worked fine!

BUT... My drop-down 'Sidebar' menu runs across the whole screen... On Chrome 16 and IE9 the search box suggestions appear 'behind' the menu items. With FF9 it works fine (i.e. is opaque and in front of the menu items). Is there a CSS change I can make for this?

EDIT: In the meantime I have added the following to Common.js, so that the dropdown suggestions list is smaller:

Code: Select all

window.os_max_lines_per_suggest = 4; /* was 7 in skins/common/mwsuggest.js but overlapped with menu*/
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: $wgEnableMWSuggest

Post by Paul »

I guess this will work, in gumax_template.css

find:

Code: Select all

#gumax-p-navigation {
	position: relative;
	z-index: 900;
	margin-top: 10px;
}
Change to:

Code: Select all

#gumax-p-navigation {
	position: relative;
	z-index: 3;
	margin-top: 10px;
}
Let me know.......
User avatar
Jonathan
Rank 6
Rank 6
Posts: 33
Joined: April 6th, 2009, 8:19 pm

Re: $wgEnableMWSuggest

Post by Jonathan »

That works fine - thank you very much!
Post Reply