fantasy1x1

Theme 008

Jan 18th, 2014
5,097
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 18.26 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head><title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <script type="text/javascript"
  9. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  10. <script>
  11. $(document).ready(function() {
  12. //
  13. $('a.poplight[href^=#]').click(function() {
  14. var popID = $(this).attr('rel'); //Get Popup Name
  15. var popURL = $(this).attr('href'); //Get Popup href to define size
  16. var query= popURL.split('?');
  17. var dim= query[1].split('&');
  18. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  19. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
  20. var popMargTop = ($('#' + popID).height() + 80) / 2;
  21. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  22. //Apply Margin to Popup
  23. $('#' + popID).css({
  24. 'margin-top' : -popMargTop,
  25. 'margin-left' : -popMargLeft
  26. });
  27. $('body').append('<div id="fade"></div>');
  28. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  29. return false;
  30. });
  31. $('a.close, #fade').live('click', function() {
  32. $('#fade , .popup_block').fadeOut(function() {
  33. $('#fade, a.close').remove(); //fade them both out
  34. });
  35. return false;
  36. });
  37. });
  38. </script>
  39.  
  40. <!-- theme number eight by fantasieswriter (or kyla) please follow the rules. don't steal or redistribute. don't claim as your own. please keep the credit in tact. thank you ♥ -->
  41.  
  42. <meta name="color:Background" content="#ffffff"/>
  43. <meta name="color:Text" content="#838282"/>
  44. <meta name="color:Link" content="#b8b8b8"/>
  45. <meta name="color:LinkBG" content="#f5f5f5"/>
  46. <meta name="color:sidebg" content="#f5f5f5"/>
  47. <meta name="color:sidesbg" content="#f5f5f5"/>
  48. <meta name="color:infobg" content="#f5f5f5"/>
  49. <meta name="color:info" content="#ffffff"/>
  50. <meta name="color:askbox" content="#b8b8b8"/>
  51. <meta name="color:askname" content="#ffffff"/>
  52. <meta name="color:linkhover" content="#cecece"/>
  53. <meta name="color:subtitle" content="#f5f5f5"/>
  54. <meta name="color:bold" content="#cecece">
  55. <meta name="color:title" content="#e1c9b2">
  56. <meta name="color:italic" content="#cecece">
  57. <meta name="color:asker bg" content="#f5f5f5">
  58. <meta name="color:border" content="#cecece">
  59.  
  60. <meta name="image:askbg" content=""/>
  61. <meta name="image:sidebar" content=""/>
  62.  
  63. <meta name="text:Subtitle" content="bigger imaginations create" />
  64.  
  65. <meta name="text:Link1" content="" />
  66. <meta name="text:Link1 Title" content="" />
  67. <meta name="text:Link2" content="" />
  68. <meta name="text:Link2 Title" content="" />
  69. <meta name="text:Link3" content="" />
  70. <meta name="text:Link3 Title" content="" />
  71. <meta name="text:Link4" content="" />
  72. <meta name="text:Link4 Title" content="" />
  73. <meta name="text:Link5" content="" />
  74. <meta name="text:Link5 Title" content="" />
  75. <meta name="text:Link6" content="" />
  76. <meta name="text:Link6 Title" content="" />
  77. <meta name="text:Link7" content="" />
  78. <meta name="text:Link7 Title" content="" />
  79. <meta name="text:Link8" content="" />
  80. <meta name="text:Link8 Title" content="" />
  81. <meta name="text:Link9" content="" />
  82. <meta name="text:Link9 Title" content="" />
  83. <meta name="text:Link10" content="" />
  84. <meta name="text:Link10 Title" content="" />
  85.  
  86. <meta name="if:AskFAQ" content="1" />
  87. <meta name="if:Ask" content="0" />
  88. <meta name="if:Tab1" content="1" />
  89. <meta name="if:Tab2" content="1" />
  90. <meta name="if:Tab3" content="1" />
  91. <meta name="if:Player" content="1" />
  92.  
  93. <style type="text/css">
  94.  
  95. ::-webkit-scrollbar-thumb {
  96. height:auto;
  97. background-color:{color:title};
  98. }
  99.  
  100. ::-webkit-scrollbar {
  101. height:9px;
  102. width:4px;
  103. background-color:{color:background};
  104. }
  105.  
  106.  
  107. .popup_block{
  108. display:none;
  109. background-color:{color:askbox};
  110. background-image:url('{image:askbg}');
  111. padding:10px;
  112. font-family:arial;
  113. font-weight:bold;
  114. float:left;
  115. font-size:10px;
  116. color:{color:askname};
  117. position:fixed;
  118. text-transform:lowercase;
  119. top:50%;
  120. left:50%;
  121. z-index:2;
  122. border-radius: 10px;
  123. }
  124.  
  125. img.btn_close {
  126. float: right;
  127. margin: -5px -5px 0 0;
  128. }
  129.  
  130. *html .popup_block {
  131. position: absolute;
  132. }
  133.  
  134. .faq {
  135.     font-size:25px;
  136.     font-family:arial;
  137.     font-weight:bold;
  138.     text-transform:lowercase;
  139.     padding-bottom:15px;
  140.     text-align:center;
  141.     background-color:{color:infobg};
  142.     padding-top:15px;
  143.     border-radius:20px;
  144. }
  145.  
  146. body {
  147.     background:{color:background};
  148.     margin:0px;
  149.     color:{color:text};
  150.     font-family:arial;
  151.     font-size:10px;
  152.     line-height:100%;
  153. }
  154.  
  155.     a {
  156.      color:{color:link};
  157.      text-decoration: none;
  158.     }
  159.  
  160.     a:hover {
  161.      color:{color:linkhover};
  162.      
  163.      
  164. }
  165.  
  166. img {
  167.     border:none;
  168. }
  169.  
  170. blockquote {
  171.     padding-left:5px;
  172.     border-left:2px solid;
  173. }
  174.    
  175. blockquote blockquote {
  176.     padding-left:5px;
  177.     border-left:2px solid;
  178. }
  179.  
  180. h1 {
  181.     font-size:15px;
  182.     font-family:arial;
  183.     text-transform:lowercase;
  184.     font-weight:bold;
  185.     background-color:#f7f7f7;
  186.     padding:15px;
  187.     border:4px double #e8e8e8;
  188.     text-align:center;
  189. }
  190.  
  191. b, strong {
  192. color:{color:bold};
  193. font-weight:bold;
  194. }
  195.  
  196. i, em {
  197. color:{color:italic};
  198. }
  199.  
  200. #entries {
  201.     padding:10px;
  202.     width:500px;
  203.     margin-left:500px;
  204.     margin-top:40px;
  205. }
  206.  
  207. #post {
  208.     width:500px;
  209.     padding-bottom:20px;
  210. }
  211.  
  212. #sidebarback {
  213.     position:fixed;
  214.     height:110%;
  215.     width:170px;
  216.     margin-top:-40px;
  217.     background-color:{color:sidebg};
  218.     border-right:305px solid {color:sidesbg};
  219. }
  220.  
  221. #sidebar {
  222.     width:150px;
  223.     position:fixed;
  224.     margin-left:250px;
  225.     margin-top:100px;
  226. }
  227.  
  228. #subtitle {
  229.     position:fixed;
  230.     padding:3px;
  231.     width:200px;
  232.     letter-spacing:1px;
  233.     font-size:10px;
  234.     font-family:arial;
  235.     text-transform:uppercase;
  236.     text-align:center;
  237.     color:{color:subtitle};
  238.     margin-left:-232px;
  239.     margin-top:0px;
  240. }
  241.  
  242. #title {
  243.     position:fixed;
  244.     color:{color:title};
  245.     font-size:24px;
  246.     width:200px;
  247.     margin-left:-230px;
  248.     text-align:center;
  249.     margin-top:230px;
  250.     line-height:88%;
  251.     font-family:arial;
  252.     font-weight:bold;
  253. }
  254.  
  255. #sidebarimage {
  256.     width 150px;
  257.     border-left:1px solid {color:border};
  258.     padding-left:13px;
  259.     padding-top:15px;
  260.     padding-bottom:20px;
  261. }
  262.  
  263. #sidebarimage img {
  264.     width:180px;
  265.     height:210px;
  266. }
  267.  
  268. #description {  
  269.     width:160px;
  270.     height:190px;
  271.     font-size:9px;
  272.     margin-top:-230px;
  273.     margin-left:-220px;
  274.     background-color:#f7f7f7;
  275.     padding:7px;
  276.     border:3px double {color:border};
  277.     text-align:center;
  278. }  
  279.  
  280. #pagination {
  281.     font-size:36px;
  282.     text-align:center;
  283.     margin-top:200px;
  284. }
  285.  
  286. #pagination a {
  287.     padding:20px;
  288. }
  289.  
  290. #info {
  291.     width:490px;
  292.     padding:5px;
  293.     font-size:9px;
  294.     color:{color:info};
  295.     margin-top:10px;
  296.     margin-bottom:5px;
  297.     text-align:left;
  298.     background-color:{color:infobg};
  299.     border-top:6px solid #f7f7f7;
  300.     border-bottom:6px solid #f7f7f7;
  301.     }
  302.    
  303. #info a {
  304.     color:{color:info};
  305. }
  306.  
  307. #tags {
  308.     margin-top:3px;
  309.     margin-left:2px;
  310. }
  311.    
  312. #questions {
  313.     background-color: {color:asker bg};  
  314.     padding:11px;
  315.     margin-top: 5px;
  316.     margin-bottom:5px;
  317.     font-size:10px;  
  318.     text-align:left;
  319. }
  320.  
  321. #answer {
  322.     font-size:10px;
  323.     text-transform:lowercase;
  324. }
  325.  
  326. #links {
  327.     padding:25px;
  328.     font-size:8px;
  329.     text-align:center;
  330.     letter-spacing:1px;
  331.     position:fixed;
  332.     float:left;
  333.     width:357px;
  334.     margin-left:-220px;
  335.     margin-top:15px;
  336.     font-family:times new roman;
  337.     text-transform:uppercase;
  338.     background-color:#f7f7f7;
  339.     color:white;
  340.     border:4px double {color:linkbg};
  341. }
  342.  
  343. #links a {
  344.     display:inline-block;
  345.     width:76px;
  346.     padding:5px;
  347.     margin-top:3px;
  348.     margin-left:1px;
  349.     color:white;
  350.     background-color:{color:linkbg};
  351. }
  352.  
  353. #links a:hover {
  354.     color:{color:linkbg};
  355.     background-color:transparent;
  356.     letter-spacing:2px;
  357.     transition:  all 0.5s ease-in-out 0s;
  358.     -moz-transition: all 0.5s ease-in-out 0s;
  359.     -webkit-transition:  all 0.5s ease-in-out 0s;
  360.     -o-transition:  all 0.5s ease-in-out 0s;
  361. }
  362.  
  363. .audioplayer {
  364.     height:68px;
  365. }
  366.  
  367. .audioimg img {
  368.     width:100px;
  369.     height:100px;
  370. }
  371.    
  372. .audioinfo {
  373.     color:#04b4ae;
  374. }
  375.  
  376. #tab1 {
  377.     position:fixed;
  378.     background-color:white;
  379.     width:200px;
  380.     height:auto;
  381.     padding:8px;
  382.     margin-left:1120px;
  383.     text-align:center;
  384. }
  385.  
  386. #tab2 {
  387.     position:fixed;
  388.     background-color:white;
  389.     width:200px;
  390.     height:auto;
  391.     padding:8px;
  392.     margin-left:1120px;
  393.     margin-top:100px;
  394.     text-align:center;
  395. }
  396.  
  397. #tab3 {
  398.     position:fixed;
  399.     background-color:white;
  400.     width:200px;
  401.     height:auto;
  402.     padding:8px;
  403.     margin-left:1120px;
  404.     margin-top:210px;
  405.     text-align:center;
  406. }
  407.  
  408. #cred {
  409. position:fixed;
  410. bottom:15px;
  411. right:15px;
  412. font-size:8px;
  413. padding:5px;
  414. text-transform:uppercase;
  415. border:1px solid {color:border};
  416. padding: 2px 3px 2px 3px;
  417. }
  418.  
  419. #player {
  420.     /* EDIT THIS STUFF TO POSITION YOUR MUSIC PLAYER */
  421.     position:fixed;
  422.     top:20px; /* YOU CAN CHANGE THIS TO BOTTOM */
  423.     left:20px; /* YOU CAN CHANGE THIS TO RIGHT */
  424.     z-index:99;}
  425.    
  426. /* I DON'T RECOMMEND TOUCHING THIS STUFF */
  427. #music1{
  428.     position:fixed;
  429.     padding:2px;
  430.     -webkit-transition: all 0.5s ease-in-out;
  431.     -moz-transition: all 0.5s ease-in-out;
  432.     -o-transition: all 0.5s ease-in-out;
  433. }
  434.    
  435. #music1:hover #music2{
  436.     opacity:0;
  437.     margin-top:-25px;
  438.     z-index:-1;
  439. }
  440.    
  441. #music1:hover #music3{
  442.     opacity:1;
  443.     margin-top:-5px;
  444.     z-index:99;
  445. }
  446.    
  447. #music1:hover #musiclist{
  448.     opacity:1;
  449. }
  450.    
  451. #music2{
  452.     /* THIS IS THE GIF DIV */
  453.     opacity:1;
  454.     background-color:#fff;
  455.     border:1px dotted #ccc;
  456.     padding:6px;
  457.     -webkit-transition: all 0.5s ease-in-out;
  458.     -moz-transition: all 0.5s ease-in-out;
  459.         -o-transition: all 0.5s ease-in-out;}
  460.    
  461. #music3{
  462.     /* THIS IS THE ACTUAL MUSIC PLAYER DIV */
  463.     opacity:0;
  464.     position:fixed;
  465.     background-color:#fff;
  466.     border:1px dashed #ccc;
  467.     width:55px;
  468.     height:20px;
  469.     z-index:99;
  470.     margin-left:-5px;
  471.     overflow:hidden;
  472.     -webkit-transition: all 0.5s ease-in-out;
  473.     -moz-transition: all 0.5s ease-in-out;
  474.         -o-transition: all 0.5s ease-in-out;}
  475.    
  476. #musiclist{
  477.     /* THIS IS THE PLAYLIST DIV */
  478.     opacity:0;
  479.     position:fixed;
  480.     padding:6px;
  481.     border:1px dashed #ccc;
  482.     margin-left:10px;
  483.     margin-top:10px;
  484.     font-family:consolas;
  485.     font-size:8px;
  486.     background-color:#fff;
  487.     width:130px;
  488.     color:#999;
  489.     text-transform:uppercase;
  490.     -webkit-transition: all 0.5s ease-in-out;
  491.     -moz-transition: all 0.5s ease-in-out;
  492.         -o-transition: all 0.5s ease-in-out;}
  493.    
  494. #musiclist h1{
  495.     /*THIS IS THE PLAYLIST TITLE SETTINGS*/
  496.     font-family:consolas;
  497.     font-size:11px;
  498.     margin-top:0px;
  499.     margin-bottom:2px;
  500.     font-style:normal;
  501.     font-weight:normal;
  502.     color:#1bbafc; /*THIS IS THE PLAYLIST TITLE COLOR*/
  503.     border-bottom:1px dotted #ccc;
  504.     text-align:left;
  505.     text-transform:uppercase;}
  506.  
  507. {CustomCSS}</style></head><body>
  508.  
  509. {block:ifTab1}<div id="tab1"><span style="background-color:{color:title}; padding:2px; color:white; padding-right:50px; padding-left:50px; text-align:center;">TAB 1</span>
  510.     <p><li>So this is your first tab</li></p>
  511.     <p><li>You put things like updates here and such</li></p>
  512. </div>{/block:ifTab1}
  513.  
  514. {block:ifTab2}<div id="tab2"><span style="background-color:{color:title}; padding:2px; color:white; padding-right:50px; padding-left:50px; text-align:center;">TAB 2</span>
  515.     <p><li>Whoa! A second tab for things? :D</li></p>
  516.     <p><li>Man these tabs are awesome!! Am I right?</li></p>
  517. </div>{/block:ifTab2}
  518.  
  519. {block:ifTab3}<div id="tab3"><span style="background-color:{color:title}; padding:2px; color:white; padding-right:50px; padding-left:50px; text-align:center;">TAB 3</span>
  520.     <p><li>Things here</li></p>
  521.     <p><li>More things here too</p>
  522. </div>{/block:ifTab3}
  523.  
  524. {block:ifPlayer}
  525. <div id="player">
  526. <div id="music1">
  527. <div id="music2">
  528.  
  529. <!-- YOU CAN CHANGE THE MUSIC GIF BELOW. -->
  530. <img src="http://media.tumblr.com/tumblr_m7w2n46Pdl1r6o8v2.gif"></div>
  531.  
  532. <div id="music3">
  533. <div style="margin-top:4px;">
  534. <!-- YOUR MUSIC CODE GOES HERE, RIGHT AFTER THIS LINE. -->
  535. </div>
  536. </div>
  537.  
  538. <div id="musiclist">
  539. <span style="background-color:#f7f7f7; padding:4px; text-align:center; padding-left:49px; padding-right:49px;">Playlist</span><p>
  540. <!-- PUT YOUR MUSIC TITLES HERE. BE SURE TO ADD A BREAK AFTER EACH ONE. -->
  541. 01. Song 1<br>
  542. 02. Song 2<br>
  543. 03. Song 3<br>
  544. 04. Song 4<br>
  545. 05. Song 5<br>
  546. </div>
  547. {/block:ifPlayer}
  548.  
  549. </div>
  550. </div>
  551.  
  552. <div id="sidebarback"></div>
  553.  
  554. <div id="sidebar">
  555.  
  556. <div id="subtitle">{text:Subtitle}</div>
  557. <div id="title">{Title}</div>
  558.  
  559. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  560.  
  561. <div id="links">
  562. <a href="/">home</a>
  563. {block:ifAsk}<a href="/ask">ask</a>{/block:ifAsk}
  564. {block:ifAskFAQ}<a href="#?w=500" rel="02" class="poplight">ask</a>{/block:ifAskFAQ}
  565. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  566. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}  
  567. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  568. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  569. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}  
  570. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  571. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}  
  572. {block:ifLink8}<a href="{text:Link8}">{text:Link8 Title}</a>{/block:ifLink8}
  573. {block:ifLink9}<a href="{text:Link9}">{text:Link9 Title}</a>{/block:ifLink9}  
  574. {block:ifLink10}<a href="{text:Link10}">{text:Link10 Title}</a>{/block:ifLink10}
  575. </div>
  576.  
  577. <div id="description"><div style="max-height:190px; width:155px; overflow:auto; padding:5px; margin-top:-5px;">{Description}</div></div>
  578.  
  579. <div id="pagination">
  580. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  581. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}    
  582. </div>
  583.  
  584. </div>
  585. <div id="cred"><a href="http://fantasieswriter.tumblr.com">fantasieswriter</a></div>
  586. <div id="entries">{block:Posts}<div id="post">
  587.  
  588. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  589.  
  590. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  591.  
  592. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  593.  
  594. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  595.  
  596. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  597.  
  598. {block:Chat}{block:ifTitle}<h1>{Title}</h1>{/block:ifTitle}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  599.  
  600. {block:Audio}
  601.     <table>
  602.     <tr>
  603.     <td>
  604.     {block:AlbumArt}<div class="audioimg"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
  605.     </td>
  606.     <td>
  607.     <div class="audioplayer">{AudioPlayerWhite}</div>
  608.     <div class="audioinfo">{block:Artist}<b>Name</b>: {Artist}{/block:Artist}<br>
  609.     {block:Album}<b>Album</b>: {Album}{/block:Album}<br>
  610.     {block:TrackName}<b>Track</b>: {TrackName}{/block:TrackName}</div>
  611.     </td>
  612.     </tr>
  613.     </table>
  614.    
  615. {/block:Audio}
  616.  
  617. <!--END AUDIO POSTS-->
  618.  
  619. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  620.  
  621. {block:Answer}<div id="questions"><b>{Asker}</b> asked: {Question}</div>
  622. <div id="answer">{Answer}</div>{/block:answer}
  623.  
  624. <div id="info"> <span style="font-size:18px;"></span><a href="{Permlink}">{block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} with <a href="{Permalink}">{NoteCountWithLabel}</a> {block:RebloggedFrom} - <a href="{ReblogParentURL}">  via </a> {/block:RebloggedFrom}
  625. {block:ContentSource} - <a href="{SourceURL}">©</a>{/block:ContentSource}{/block:RebloggedFrom}<div id="tags">
  626. {block:HasTags}{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div></div></div>
  627.  
  628. {block:PostNotes}{PostNotes}{/block:PostNotes}
  629. {/block:Posts}</div>
  630.  
  631. </body>
  632.  
  633. <div id="02" class="popup_block">
  634.  
  635. {block:ifAskFAQ}<div class="faq">F.A.Q. + ASK</div>
  636.  
  637. <div style="max-height:180px; width:500px; overflow:auto; padding:5px; margin-top:-5px;">
  638.  
  639.         <p><span style="font-size:11px; font-family:times; font-weight:normal; background-color:{color:linkbg}; width:500px; padding:3px; line-height:200%;">01. questions?</span></p>
  640.         <p><span style="font-size:11px; font-family:times; font-weight:normal; background-color:{color:infobg}; width:500px; padding:3px; margin-left:21px; line-height:200%;">answer here</span></p>
  641.        
  642.         <p><span style="font-size:11px; font-family:times; font-weight:normal; background-color:{color:linkbg}; width:500px; padding:3px; line-height:200%;">02. question here?</span></p>
  643.        
  644.         <p><span style="font-size:11px; font-family:times; font-weight:normal; background-color:{color:infobg}; width:500px; padding:3px; margin-left:21px; line-height:200%;">answer here~</span></p>
  645.        
  646.         <p><span style="font-size:11px; font-family:times; font-weight:normal; background-color:{color:linkbg}; width:500px; padding:3px; line-height:200%;">03. question here too?</span></p>
  647.        
  648.         <p><span style="font-size:11px; font-family:times; font-weight:normal; background-color:{color:infobg}; width:500px; padding:3px; margin-left:21px; line-height:200%;">another answer here n - n</span></p>
  649.        
  650.  
  651. <p> </p>
  652. <p> </p>
  653.  
  654. </div>{/block:ifAskFAQ}
  655.  
  656. <center><font size="5" color="#1C1C1C">Ask Me Anything<p></font><iframe frameborder="0" scrolling="yes" width="100%" height="200" src="http://www.tumblr.com/ask_form/{YOURURL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  657. </center></div>
  658.  
  659. </div></div></div></div></div></div></div></div></div></div>
  660.    
  661. </html>
Advertisement
Add Comment
Please, Sign In to add comment