Advertisement
sexycullen

theme 194 w/ 181 ask style

Dec 9th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. * IN THE CSS *
  2. search for .ask and delete everything starting with that, also delete: .asker, .answer and .tagsline
  3.  
  4. paste this instead:
  5. .ask {
  6. {block:ifShow540pxposts}
  7. width:540px;
  8. {/block:ifShow540pxposts}
  9. {block:ifShow500pxposts}
  10. width:500px;
  11. {/block:ifShow500pxposts}
  12. {block:ifShow400pxposts}
  13. width:400px;
  14. {/block:ifShow400pxposts}
  15. font-size: {text:Body Font Size};
  16. font-family: {text:Body Font};
  17. text-align:left;
  18. font-weight:;
  19. padding-bottom:10px;
  20. font-size: {text:Body Font Size};
  21. font-family: {text:Body Font};
  22. border-bottom: 1px solid {color:Posts Border};
  23. }
  24.  
  25. .ask a {
  26. color:{color:bold};
  27. }
  28.  
  29. .ask a:hover {
  30. text-decoration:none;
  31. color:{color:Link Hover};
  32. }
  33.  
  34. .answer {
  35. {block:ifShow540pxposts}
  36. width:540px;
  37. {/block:ifShow540pxposts}
  38. {block:ifShow500pxposts}
  39. width:500px;
  40. {/block:ifShow500pxposts}
  41. {block:ifShow400pxposts}
  42. width:400px;
  43. {/block:ifShow400pxposts}
  44. letter-spacing:0px;
  45. text-align:left;
  46. margin-bottom:1px;
  47. font-size: {text:Body Font Size};
  48. font-family: {text:Body Font};
  49. }
  50.  
  51. /* the horizontal line after the ask url. you can use anywhere you want in the html just add <shortborder1></shortborder1> */
  52. shortborder2 {
  53. width:10px;
  54. height:1px;
  55. margin-left:2px;
  56. margin-right:2px;
  57. background:{color:Posts Border};
  58. display:inline-block;
  59. vertical-align:middle;
  60. }
  61. /* the horizontal line after the ask url. */
  62.  
  63. /////////////////////////////////////////////////////
  64.  
  65. * IN THE HTML *
  66. search for {block:Answer}, delete it all and paste this instead:
  67.  
  68. {block:Answer}
  69. <div class="ask">
  70. <span style="font-style: italic;text-transform:lowercase;color:{color:bold};font-weight:bold;">{Asker}</span>
  71. <shortborder2></shortborder2>
  72. <span style="text-transform:none;"> {Question} </span>
  73. </div>
  74. <div class="caption">
  75. <div class="answer">{Answer}</div>
  76. </div>
  77. {/block:Answer}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement