Advertisement
heartilys

TABBED EDITS

Oct 16th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. STEP ONE:
  2. find the sections labeled #musenav, #stats, #bio, #connections, and #verses. you’ll see a } closing off each section. between this and the line above it, you need to copy/paste the line ‘ display:none; ‘ ( without the apostrophes ).
  3.  
  4. EXAMPLE:
  5.  
  6. #musenav {
  7. width:510px;
  8. height:345px;
  9. padding:25px;
  10. border:10px solid #000; /* Tab border. */
  11. overflow-x:hidden;
  12. background-color:#faf9f9;
  13. left:288px;
  14. top:143px;
  15. z-index:99999;
  16. position:absolute;
  17. overflow-y:hidden;
  18. display:none;
  19. }
  20.  
  21. STEP TWO:</b> now it’s just a matter of replacing a few lines. i’ll separate them out so you don’t lose track.
  22.  
  23. 01 | FIND THIS:
  24.  
  25. #musenav {
  26. display:none;
  27. opacity:0; }
  28. .show:focus + #musenav {
  29. display:block;
  30. opacity:1;
  31. }
  32.  
  33. 01 | REPLACE WITH THIS:
  34.  
  35. .show:focus + #musenav {
  36. display:block;
  37. opacity:1;
  38. }
  39. #musenav:hover {
  40. display: block;
  41. }
  42.  
  43. 02 | FIND THIS:
  44.  
  45. #stats {
  46. display:none;
  47. opacity:0;
  48. }
  49. .show:focus + #stats {
  50. display:block;
  51. opacity:1;
  52. }
  53.  
  54. 02 | REPLACE WITH THIS:
  55.  
  56. .show:focus + #stats {
  57. display:block;
  58. opacity:1;
  59. }
  60. #stats:hover {
  61. display: block;
  62. }
  63.  
  64. 03 | FIND THIS:
  65.  
  66. #bio {
  67. display:none;
  68. opacity:0;
  69. }
  70. .show:focus + #bio {
  71. display:block;
  72. opacity:1;
  73. }
  74.  
  75. 03 | REPLACE WITH THIS:
  76.  
  77. .show:focus + #bio {
  78. display:block;
  79. opacity:1;
  80. }
  81. #bio:hover {
  82. display: block;
  83. }
  84.  
  85. 04 | FIND THIS:
  86.  
  87. #connections {
  88. display:none;
  89. opacity:0;
  90. }
  91. .show:focus + #connections {
  92. display:block;
  93. opacity:1;
  94. }
  95.  
  96. 04 | REPLACE WITH THIS:
  97.  
  98. .show:focus + #connections {
  99. display:block;
  100. opacity:1;
  101. }
  102. #connections:hover {
  103. display: block;
  104. }
  105.  
  106. 05 | FIND THIS:
  107.  
  108. #verses {
  109. display:none;
  110. opacity:0;
  111. }
  112. .show:focus + #verses {
  113. display:block;
  114. opacity:1;
  115. }
  116.  
  117. 05 | REPLACE WITH THIS:
  118.  
  119. .show:focus + #verses {
  120. display:block;
  121. opacity:1;
  122. }
  123. #verses:hover {
  124. display: block;
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement