But it's not working....
Does anyone know a code that may work?
Last edited by udarsha45 on September 12th 2015, 1:41 pm; edited 1 time in total
This is a Hitskin.com skin preview
Install the skin • Return to the skin page
Ange Tuteur wrote:What's the URL of the forum you tried installing it on + is it still installed on that forum ?
Let me know
Ange Tuteur wrote:Try reinstalling everything, if there are any problems let me know and I'll check to see what's preventing it from functioning.
(function() {
document.write('<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.css" rel="stylesheet" type="text/css" />');
$(function() {
$.getScript('https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.min.js', function() {
$('a').tipsy({gravity: 's'});
});
});
})();
Ange Tuteur wrote:Looks like the toolbar margin offset is causing that. Try changing the gravity from 's' to 'n' to see if that helps.
body {
margin-top:0 !important;
padding-top:30px;
}
Ange Tuteur wrote:I was correct it's caused by a 30px margin. Mm.. try adding the following rule to your stylesheet.
Display > Colors > CSS stylesheet
- Code:
body {
margin-top:0 !important;
padding-top:30px;
}
It'll get rid of the 30px margin caused by the toolbar and replace it with a padding instead. Although when you do close the toolbar there'll be a slight gap, but it should fix the position of the tooltips.