Quote:
Originally Posted by TTG
Using the code you provided for the popup ability :-
Code:
<div id="GALBox"
style="position: absolute; width: 200px; z-index: 100;
border: 1pt black solid; background: #FFFFCC;
visibility: hidden; padding: 10px;"
onmouseover="this.style.visibility='visible';"
onmouseout="this.style.visibility='hidden';">
</div>
how can I move the pop up to be a few pixels down from the link .. it covers the link at the moment.
|
Lionel - thanks for the heads up with the $description. Ill change the readme and the default in the hack.
TTG - its in the javascript. Open vbulletin_menu.js and its right at the top (in one of the functions you added).
Look for toppx=toppx-(number) and change number to whatever offset you want. You can use 0 however depending on the style of your link - it could cause intermitten problems. I would use toppx=toppx-1;
nJoy