Quote:
Originally Posted by gothicuser
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.
|
Thank you !!
I played with it awhile, and got ther threadlist tooltip to position properly where I wanted it.
Sweet!
But I did notice that the search_threadbit tooltip is positioned even further the distance to the right now. Like it was in the middle for some reason oem, and when I moved the position offset for threadlist, it moved the offset even further the same distance to the right.
A note, I used your search_threadbit that you posted.