Advertisement
Unzo

Hover Networks

Oct 16th, 2013
1,409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. Tutorial by Unzo - http://unzo.tumblr.com/
  2.  
  3. 01- Paste the following code before "</style>" in your HTML code (ctrl+f to search)
  4.  
  5. #networks{
  6. z-index:1000;
  7. position:fixed;
  8. overflow:hidden;
  9. width:80px;
  10. height:15px;
  11. top:30px;
  12. right:10px;
  13. padding:5px;
  14.  
  15. text-align:center;
  16.  
  17. -webkit-transition: all 1s ease;
  18. -moz-transition: all 1s ease;
  19. -o-transition: all 1s ease;
  20.  
  21. cursor:default;
  22. }
  23.  
  24. #networks:hover{
  25. z-index:10000;
  26. height:500px;
  27. }
  28.  
  29. #networks .title{
  30. padding:2px;
  31.  
  32. font-family:calibri;
  33. font-size:11px;
  34. letter-spacing:1px;
  35. text-transform:uppercase;
  36.  
  37. cursor:pointer;
  38. }
  39.  
  40. ----------------------------------------------------------------------------------------------------
  41.  
  42. 02- Paste under "<body>" the following code
  43.  
  44. <div id="networks">
  45.  
  46. <div class="title">
  47. Networks
  48. </div>
  49.  
  50. <!-- Logo --->
  51. <p>
  52. <a target="_blank" title="TITLE" href="URL"><img src="LOGO URL" width="70">
  53. </a>
  54. </p>
  55. <!-- Logo --->
  56.  
  57. </div>
  58.  
  59. ----------------------------------------------------------------------------------------------------
  60.  
  61. 03- Update Preview -> Save. Refresh the page and done!
  62.  
  63. PS. If you want to add more logos just copy and paste the "Logo" content.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement