sexycullen

new tooltip style theme 166

Nov 3rd, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. search for #s-m-t-tooltip { and replace all that code for this new one:
  2.  
  3. #s-m-t-tooltip {
  4. font-family:hind;
  5. font-size:9px;
  6. max-width:300px;
  7. border-radius: 0px;
  8. padding:10px;
  9. font-weight:bold;
  10. margin:-45px -25px;
  11. color:{color:bold};
  12. background-color:{color:Background};
  13. outline:1px solid {color:Info Border};
  14. -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  15. box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  16. z-index:99999;
  17. }
  18.  
  19.  
  20. then search for <div class="sidebarlinks">, it's where the links are. to add a title on hover of them, you just add title=""
  21.  
  22. before it was:
  23. <a href="{text:link1 url}">{text:link1}</a>
  24.  
  25. now will be:
  26. <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