Advertisement
BOOdalinski

View by Tags (Page for Tumblr)

Jun 10th, 2019
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.92 KB | None | 0 0
  1. How to Install...
  2.  
  3. Step 1: COPY and PASTE the following code into your theme's CSS between <style> and </style>
  4.  
  5. <style>
  6. .tag-all,
  7. .tag-red,
  8. .tag-blue,
  9. .tag-purple {line-height:160%;font-size:12px;text-align:center;}
  10.  
  11. p a.tag-all,
  12. p a.tag-red,
  13. p a.tag-blue,
  14. p a.tag-purple {
  15.     color:{TitleColor};
  16.     background:{TitleColor}20;
  17.     border:1px solid {TitleColor}20;
  18.     border-radius: 3px;
  19.     text-transform:none;
  20.     margin-right: 0.5em;
  21.     margin-bottom:0px;
  22.     padding: 0.3em 0.85em;
  23.     transition: all 300ms ease-in-out;
  24.     }
  25.  
  26. p a.tag-all:hover,
  27. p a.tag-red:hover,
  28. p a.tag-blue:hover,
  29. p a.tag-purple:hover {
  30.     background:#fff;
  31.     color:{color:Link Hover};
  32.     border-color:{color:Link Hover}60;
  33.     box-shadow: 0 1px 2px #00000010;
  34.     }
  35.  
  36. h3 {
  37.     font-family:{text:Header Font};
  38.     letter-spacing:1px;
  39.     text-transform:uppercase;
  40.     color:#000;
  41.     }
  42. </style>
  43.  
  44. Step 2: Create a new theme page, then COPY and PASTE the following code into the HTML section
  45.  
  46. <h3 style="font-size: 12px; color: #000;"><strong>Category 1</strong></h3>
  47. <p><a class="tag-all" href="/tagged/1">Tag 1</a><a class="tag-red" href="/tagged/2">Tag 2</a><a class="tag-red" href="/tagged/3">Tag 3</a><a class="tag-red" href="/tagged/4">Tag 4</a></p>
  48. <p><a class="tag-red" href="/tagged/5">Tag 5</a><a class="tag-red" href="/tagged/6">Tag 6</a><a class="tag-red" href="/tagged/7">Tag 7</a><a class="tag-red" href="/tagged/8">Tag 8</a></p>
  49. <h3 style="margin-top: 3em; font-size: 12px; color: #000;"><strong>Category 2 &nbsp;</strong></h3>
  50. <p><a class="tag-blue" href="/tagged/9">Tag 9</a><a class="tag-blue" href="/tagged/10">Tag 10</a></p>
  51. <h3 style="margin-top: 3em; font-size: 12px; color: #000;"><strong>Category 3&nbsp;</strong></h3>
  52. <p><a class="tag-purple" href="/tagged/11">Tag 11</a><a class="tag-purple" href="/tagged/12">Tag 12</a><a class="tag-purple" href="/tagged/13">Tag 13</a><a class="tag-purple" href="/tagged/14">Tag 14</a></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement