Advertisement
dullcevita

NOSYREPORTCR NAV CODE

Apr 30th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. paste this in the CSS anywhere after <style type="text/css"> and before </style>
  2.  
  3. /* NAVIGATION TABLE */
  4.  
  5. #navtable {
  6. width:400px;
  7. margin-left: auto ;
  8. margin-right: auto ;
  9. }
  10.  
  11. #table {
  12. display: block;
  13. font-size: 11px;
  14. letter-spacing:1px;
  15. text-transform:uppercase;
  16. font-weight:bold;
  17. font-family: helvetica;
  18. text-align: center;
  19. margin-top:0px;
  20. }
  21.  
  22. #links {
  23. display: block;
  24. font-decoration: none;
  25. width: 400px;
  26. }
  27.  
  28. td {
  29. width:200px;
  30. height:30px;
  31. background-color:{color:text};
  32. -o-transition:.5s;
  33. -ms-transition:.5s;
  34. -moz-transition:.5s;
  35. -webkit-transition:.5s;
  36. transition:.5s;
  37. }
  38.  
  39. td:hover {
  40. width:200px;
  41. height:30px;
  42. }
  43.  
  44. #links a {
  45. display: block;
  46. color: {color:bold};
  47. text-decoration: none;
  48. }
  49.  
  50. #links a:hover {
  51. display: block;
  52. }
  53.  
  54. END OF CSS.
  55. then, replace your old navigation div with this:
  56.  
  57. <div id="05" class="popup_block">
  58. <div class="poptext">
  59. <div class="pptext">
  60.  
  61. <h1>nav text</h1>
  62.  
  63. <div id="navtable">
  64. <div id="links">
  65. <table id="table" table border="0" cellspacing="" cellpadding="2">
  66.  
  67. <tr>
  68. <td><a href="/">guidelines</a></td>
  69. <td><a href="/">reflection</a></td>
  70. </tr>
  71.  
  72. <tr>
  73. <td><a href="/">musings</a></td>
  74. <td><a href="/">ic answers</a></td>
  75. </tr>
  76.  
  77. <tr>
  78. <td><a href="/">drabbles</a></td>
  79. <td><a href="/">headcanons</a></td>
  80. </tr>
  81.  
  82. <tr>
  83. <td><a href="/">wants</a></td>
  84. <td><a href="/">playlist</a></td>
  85. </tr>
  86.  
  87. </table></div></div>
  88.  
  89. </div>
  90. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement