Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- search for #s-m-t-tooltip { and replace all that code for this new one:
- #s-m-t-tooltip {
- font-family:hind;
- font-size:9px;
- max-width:300px;
- border-radius: 0px;
- padding:10px;
- font-weight:bold;
- margin:-45px -25px;
- color:{color:bold};
- background-color:{color:Background};
- outline:1px solid {color:Info Border};
- -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
- box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
- z-index:99999;
- }
- then search for <div class="sidebarlinks">, it's where the links are. to add a title on hover of them, you just add title=""
- before it was:
- <a href="{text:link1 url}">{text:link1}</a>
- now will be:
- <a title="anything you want to appear on hover here" href="{text:link1 url}">{text:link1}</a>
Advertisement
Add Comment
Please, Sign In to add comment