i wanted to change the links for the cell - super ego into roman numerials, how would i go about changing the font when i hover over the text as well? because when i use the there is already a general set up, but in some of your themes (ex: tainted love) you changed the font of when you hover over it?
Like you mean the label that appears when you hover over it right?
So hopefully it has the JS needed and all you need to add is
$().ready(function() { $("[title]").style_my_tooltips({ tip_follows_cursor: "on", //on/off tip_delay_time: 200 //milliseconds });});
BEFORE the CSS section and then:
#s-m-t-tooltip{ position:absolute; z-index:90000; display:inline-block; background-color: #df4343; color: #ffffff; padding: 6px 10px; font-size: 8px; text-transform: uppercase; letter-spacing: 1px; word-wrap: break-word; word-break: break-all; line-height: 120%;}
In the CSS section and then you can fiddle with the CSS font color etc. For what is what please google. Hope that helps!














