Advertisement
Guest User

Instructions

a guest
May 29th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.80 KB | None | 0 0
  1. I hope this works, if it doesn't, I could also just send you the whole code to copy. But in that case you'd have to redo all the design stuff (choose colors, upload the sidebar picture etc) and that wouldn't be too great, so let's try it like this first:
  2.  
  3. Okay, sooo:
  4.  
  5. Copy this:
  6.  
  7.  <meta name="text:DescriptionTitleAbove" content="">
  8.  <meta name="text:DescriptionAbove" content="">
  9.  
  10. And past it at the top below the other meta things, but above <style type="text/css"> .
  11.  
  12. Then copy this:
  13.  
  14. .desc2 {
  15.     font-size:9px; /* Change number to change font size */
  16.     text-transform: uppercase; /* If you don't want all the letters to be capitals, delete this line */
  17.     margin-bottom:7px; /* Space between text + picture */
  18.     text-align:center;
  19.     margin-top:-40px; /* number changes the position of the whole text/picture/text thing on your blog. Bigger number means it's nearer to the top! */
  20.     width:250px;
  21.     }
  22.  
  23. .desctitle {
  24.     font-size:15px; /* Change font size here */
  25.     margin-bottom:1px; /* Space between the title and the text */
  26.     }
  27.  
  28. And past it somewhere between <style type="text/css"> and </style>. Maybe just directly above {CustomCSS}</style>.
  29. I put some instructions next to the code, you don't have to use them, but if you wanna change the font size or something, that's how.
  30.  
  31.  
  32. Then copy this:
  33.  
  34. <div class="desc2">
  35. <div class="desctitle">
  36.    <b> {text:DescriptionTitleAbove} </b>
  37. </div>
  38.  
  39. {text:DescriptionAbove}
  40.  
  41. </div>
  42.  
  43. and past it between
  44. <div id="sidebar">
  45. and
  46. <img src="{image:image}">
  47. <div class="link">
  48. (That should be in line 140 or somewhere around that)
  49.  
  50. Then you're done :) Now, you should be able to go back to the theme options (arrow on top) and there should be two new text fields: DescriptionAbove & DescriptionTitleAbove. Type your text in there. :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement