Quote:
Originally Posted by smirkley
But I wish to move the other thread list popups to position more to the right also. I would just like to position the popup to the right of the mouse pointer instead of above the pointer as it is currently.
Where do I tweak the settings to move it over a bit.
Thanks again.
|
To edit the position of the tooltip you need to open one of the css.js files (depending on which theme you use, either the 'jqt_suite_black_css.js' or 'jqt_suite_white_css.js')
The positioning is controlled where you see the line
PHP Code:
offset: [14, -20],
x coordinate fist, then y
They are fiddly to get right. You just need to experiment.
The block you need to find will be the
PHP Code:
// Tooltip for threadbits
$("td.jqt_threadbit_tooltip_trigger[title]").tooltip({
tipClass:'jqt_threadbit_tooltip_white',
offset: [14, -20],
effect: 'slide',
predelay: '500',
slideInSpeed: 500,
slideOutSpeed: 400,
slideOffset: 20
}).dynamic({ bottom: { direction: 'down', bounce: true } });
or
PHP Code:
// Tooltip for threadbits number 2 (vB4)
$("div.jqt_threadbit_tooltip_trigger2[title]").tooltip({
tipClass:'jqt_threadbit_tooltip_white',
offset: [14, -20],
effect: 'slide',
predelay: '500',
slideInSpeed: 500,
slideOutSpeed: 400,
slideOffset: 20
}).dynamic({ bottom: { direction: 'down', bounce: true } });
You'll have to experiment.