Advertisement
Unzo

Theme Borders

Jul 14th, 2014
855
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. Tutorial by Unzo - http://unzo.tumblr.com/
  2.  
  3. 01- Paste the following code before "<style type="text/css">" in your HTML code (ctrl+f to search)
  4.  
  5. <meta name="color:Theme Borders" content="#eee"/>
  6.  
  7. ----------------------------------------------------------------------------------------------------
  8.  
  9. 02- Paste before "</style>" the following code
  10.  
  11. .topbar, .bottombar, .leftbar, .rightbar{
  12. position:fixed;
  13.  
  14. background:{color:Theme Borders};
  15. }
  16.  
  17. .topbar{
  18. top:0;
  19. left:0;
  20.  
  21. width:100%;
  22. height:30px;
  23. }
  24.  
  25. .bottombar{
  26. bottom:0;
  27. left:0;
  28.  
  29. width:100%;
  30. height:30px;
  31. }
  32.  
  33. .leftbar{
  34. top:0;
  35. left:0;
  36.  
  37. width:30px;
  38. height:100%;
  39. }
  40.  
  41. .rightbar{
  42. top:0;
  43. right:0;
  44.  
  45. width:30px;
  46. height:100%;
  47. }
  48.  
  49. ----------------------------------------------------------------------------------------------------
  50.  
  51. 03- Paste under "<body>" the following code
  52.  
  53. <div class="topbar">
  54. </div>
  55. <div class="bottombar">
  56. </div>
  57. <div class="leftbar">
  58. </div>
  59. <div class="rightbar">
  60. </div>
  61.  
  62. ----------------------------------------------------------------------------------------------------
  63.  
  64. 04- Update Preview -> Save. Refresh the page.
  65.  
  66. ----------------------------------------------------------------------------------------------------
  67.  
  68. 05- In your "Appearance" section you will see an option to change the colors of the borders.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement