Advertisement
Guest User

networks/updates/stats tab code

a guest
Jul 23rd, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. FIRSTLY, PASTE THE CODE BELOW BEFORE </STYLE> IN YOUR HTML (PRESS COMMAND + F AND TYPE IT IN TO SEARCH FOR A WORD)
  2.  
  3. #mainbox {
  4. font-size:9px;
  5. font-family: Arial;/*font size for all tabs*/
  6. text-align:center;
  7. background-color:white; /*background colour*/
  8. position:fixed;
  9. border-radius:10px;
  10. border:1px solid #eeeeee; /*border width and colour*/
  11. left:25px; top:25px;
  12. padding:6px;
  13. height:auto; width:125px;
  14. line-height:16px;
  15. z-index:4;}
  16.  
  17.  
  18. #tab1{
  19. height:14px; padding:3px;
  20. overflow:hidden;
  21. font-family: Arial;
  22. font-size:10;
  23. border-bottom:1px solid #eeeeee;
  24. z-index:4;
  25. -webkit-transition: all 0.4s ease-in-out;
  26. -moz-transition: all 0.4s ease-in-out;
  27. -o-transition: all 0.4s ease-in-out;}
  28.  
  29. #tab1:hover{
  30. height:80px; /*height of tab on hover*/ }
  31.  
  32.  
  33. #tab2{
  34. height:14px; padding:3px;
  35. overflow:hidden;
  36. border-bottom:1px solid #eeeeee;
  37. z-index:4;
  38. -webkit-transition: all 0.4s ease-in-out;
  39. -moz-transition: all 0.4s ease-in-out;
  40. -o-transition: all 0.4s ease-in-out;}
  41.  
  42. #tab2:hover{
  43. height:80px; /*height of tab on hover*/ }
  44.  
  45.  
  46. #tab3{
  47. height:14px; padding:3px;
  48. overflow:hidden;
  49. border-bottom:1px solid #eeeeee;
  50. z-index:4;
  51. -webkit-transition: all 0.4s ease-in-out;
  52. -moz-transition: all 0.4s ease-in-out;
  53. -o-transition: all 0.4s ease-in-out;}
  54.  
  55. #tab3:hover{
  56. height:auto; /*height of tab on hover*/ }
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. PASTE THIS CODE DIRECTLY UNDER <BODY> IN YOUR HTML
  64.  
  65. <div id="mainbox">
  66.  
  67. <div id="tab1">
  68. <div style="text-align:center;"><FONT COLOR="PUT WHAT COLOR U WANT HERE">UPDATES</div><br>
  69. PUT UPDATES HERE
  70. </div>
  71.  
  72.  
  73. <div id="tab2">
  74. <div style="text-align:center;">STATS</div>
  75. <br>PUT YOUR STATS CODES HERE
  76. </div>
  77.  
  78.  
  79. <div id="tab3">
  80. <div style="text-align:center;">NETWORKS</div><br>
  81. <marquee behavior="scroll" direction="left">PUT YOUR NETWORK BADGE CODES HERE</marquee>
  82. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement