Quote:
Originally Posted by Intex
I guess everybody has this problem? Has any solution been found yet?
|
I've managed to alter the z-index of the popup menu - however it doesn't impact on the Flash issue ...
On a side note, here's another funny bit of code - look out for
e_by_gum LOL
Open clientscript/vbulletin_menu.js, find:
Code:
// do popup menu object
var popupobj = fetch_object(menuid);
popupobj.style.display = "none";
popupobj.style.position = "absolute";
popupobj.style.left = "0px";
popupobj.style.top = "0px";
popupobj.onclick = e_by_gum;
Replace with:
Code:
// do popup menu object
var popupobj = fetch_object(menuid);
popupobj.style.display = "none";
popupobj.style.position = "absolute";
popupobj.style.zIndex = "999";
popupobj.style.left = "0px";
popupobj.style.top = "0px";
popupobj.onclick = e_by_gum;
However, even setting the z-index value to 999 (or 9999999 to be ove the top), the popup menu still loads behind the Flash games ...
Sorry guys ...