Advertisement
hor4ny

Special theme 10 w/ popups - Miserywishes

Sep 15th, 2012
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.89 KB | None | 0 0
  1. <!--
  2. Theme by miserywishes.
  3. Keep credit or put it in your FAQ... OR ELSE I WILL CUT YOU.
  4.  
  5.  
  6. IF YOU USE THIS THEME AS A BASECODE, PLEASE ASK ME BEFORE PUBLISHING! I'LL KNOW IF YOU USE MY THEME BECAUSE OF THE REBLOG BUTTON.
  7.  
  8.  
  9.  
  10. Make sure you have 15 posts per page or else the infinite scrolling might not work. To do this, go to custumize than it should be under advanced.
  11.  
  12. -->
  13.  
  14.  
  15.  
  16. <html lang="en">
  17. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  18. <html xmlns="http://www.w3.org/1999/xhtml">
  19. <head>
  20.  
  21.  
  22. <script type="text/javascript">
  23. <!--
  24.  
  25. // Disable Right Click Script
  26.  
  27. function IE(e)
  28. {
  29. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  30. {
  31. return false;
  32. }
  33. }
  34. function NS(e)
  35. {
  36. if (document.layers || (document.getElementById && !document.all))
  37. {
  38. if (e.which == "2" || e.which == "3")
  39. {
  40. return false;
  41. }
  42. }
  43. }
  44. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  45.  
  46. //-->
  47. </script>
  48.  
  49.  
  50. <script type="text/javascript"
  51. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  52.  
  53. <!-- DEFAULT VARIABLES -->
  54. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  55. <meta name="color:background" content="#fff"/>
  56. <meta name="color:link" content="#777"/>
  57. <meta name="color:text" content="#777"/>
  58. <meta name="color:title" content="#333"/>
  59. <meta name="color:hover" content="#fff"/>
  60. <meta name="color:blogtitle" content="#fff" />
  61. <meta name="color:blogtitle shadow" content="#aaa" />
  62. <meta name="color:titlebar background" content="#333" />
  63. <meta name="color:scrollbar" content="#222" />
  64. <meta name="image:sidebar" content=""/>
  65. <meta name="image:background" content="1"/>
  66. <meta name="if:scrollbar" content="1"/>
  67. <meta name="text:link one title" content="home" />
  68. <meta name="text:link two title" content="inbox" />
  69. <meta name="text:link three title" content="links" />
  70. <meta name="text:link four" content="" />
  71. <meta name="text:link four title" content="" />
  72. <meta name="text:link five" content="" />
  73. <meta name="text:link five title" content="" />
  74. <meta name="text:sidebar width" content="165" />
  75. <meta name="text:sidebar margin left" content="135" />
  76. <meta name="text:sidebar margin top" content="230" />
  77.  
  78.  
  79. <script>
  80. $(document).ready(function() {
  81. //
  82. $('a.poplight[href^=#]').click(function() {
  83. var popID = $(this).attr('rel'); //Get Popup Name
  84. var popURL = $(this).attr('href'); //Get Popup href to define size
  85. var query= popURL.split('?');
  86. var dim= query[1].split('&');
  87. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  88. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  89. var popMargTop = ($('#' + popID).height() + 80) / 2;
  90. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  91. //Apply Margin to Popup
  92. $('#' + popID).css({
  93. 'margin-top' : -popMargTop,
  94. 'margin-left' : -popMargLeft
  95. });
  96. $('body').append('<div id="fade"></div>');
  97. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  98. return false;
  99. });
  100. $('a.close, #fade').live('click', function() {
  101. $('#fade , .popup_block').fadeOut(function() {
  102. $('#fade, a.close').remove(); //fade them both out
  103. });
  104. return false;
  105. });
  106. });
  107. </script>
  108. <style type="text/css">
  109.  
  110.  
  111.  
  112. {block:ifscrollbar}
  113. ::-webkit-scrollbar {width: 4px; height: 4px; border-left:0px solid #ccc; background-image:url({image:background});background-color:{color:background}}
  114. ::-webkit-scrollbar-thumb { border-left:0px solid #ccc; background: {color:scrollbar};}
  115. {/block:ifscrollbar}
  116.  
  117. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  118.  
  119. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  120. p {
  121. margin:0px;
  122. margin-top:0px;
  123. }
  124.  
  125.  
  126. #fade { /*--Transparent background layer--*/
  127. display: none; /*--hidden by default--*/
  128. background: #000;
  129. position: fixed; left: 0; top: 0;
  130. width: 100%; height: 100%;
  131. opacity: .8;
  132. z-index: 9999;
  133. }
  134. .popup_block{
  135. display: none; /*--hidden by default--*/
  136. background: #ffffff;
  137. color:{color:text};
  138. padding: 10px;
  139. float: left;
  140. font-size: 10;
  141. position: fixed;
  142. top: 50%; left: 50%;
  143. z-index: 99999;
  144. -webkit-transition: all .7s ease;
  145. -moz-transition: all .7s ease;
  146. -o-transition: all .7s ease;
  147. transition: all .7s ease;
  148. /*--CSS3 Box Shadows--*/
  149. -webkit-box-shadow: 0px 0px 20px #000;
  150. -moz-box-shadow: 0px 0px 20px #000;
  151. box-shadow: 0px 0px 20px #000;
  152. /*--CSS3 Rounded Corners--*/
  153. -webkit-border-radius: 5px;
  154. -moz-border-radius: 5px;
  155. border-radius: 5px;
  156. }
  157.  
  158.  
  159. /*--Making IE6 Understand Fixed Positioning--*/
  160. *html #fade {
  161. position: absolute;
  162. }
  163. *html .popup_block {
  164. position: absolute;
  165. }
  166.  
  167. body {
  168. padding: 0px;
  169. margin: 0px;
  170. color:{color:text};
  171. font-family: dixel;
  172. line-height:7px;
  173. font-size:8px;
  174. background-color: {color:Background};
  175. background-image:url({image:Background});
  176. background-attachment: fixed;
  177. background-repeat: repeat;
  178. }
  179.  
  180.  
  181. a:link, a:active, a:visited{
  182. text-decoration: none;
  183. -webkit-transition: color 0.3s ease-out;
  184. -moz-transition: color 0.3s ease-out;
  185. transition: color 0.3s ease-out;
  186. color:{color:link};
  187. }
  188.  
  189. a:hover {
  190. text-decoration: none;
  191. font-style:;
  192. text-shadow:0px 0px 2px #000;
  193. color: {color:Hover};
  194. }
  195.  
  196. div#center{
  197. margin:auto;
  198. position:relative;
  199. width:1000px;
  200. background-color:;
  201. overflow:auto;
  202. overflow-y:hidden;
  203. }
  204.  
  205. .entry {
  206. float:left;
  207. display: block;
  208. margin:2px;
  209. line-height:7px;
  210. padding:3px;
  211. border:1px solid #ddd;
  212. overflow:hidden;
  213. width:190px;
  214. opacity:0.85;
  215. {block:PermalinkPage}
  216. width:392px;
  217. text-align:left;
  218. line-height:10px;
  219. {/block:PermalinkPage}
  220. background:white;
  221. background-image:URL();
  222. transition: all 0.5s ease-out;
  223. -o-transition-transition: all 0.5s ease-out;
  224. -webkit-transition: all 0.5s ease-out;
  225. -moz-transition: all 0.5s ease-out;
  226. }
  227.  
  228. .entry:hover{
  229. opacity:1;
  230. transition: all 0.5s ease-out;
  231. -o-transition-transition: all 0.5s ease-out;
  232. -webkit-transition: all 0.5s ease-out;
  233. -moz-transition: all 0.5s ease-out;}
  234.  
  235. .entry .perma a{
  236. color:#444444;}
  237.  
  238.  
  239. .entry .perma{
  240. width:38px;
  241. height:30px;
  242. position: absolute;
  243. line-height: 33px;
  244. overflow:hidden;
  245. font-family:dixel;
  246. text-align:left;
  247. padding-left:6px;
  248. font-size:8px;
  249. left:-50px;
  250. bottom:2px;
  251. border-right:1px solid #f2f2f2;
  252. border-top:1px solid #f2f2f2;
  253. background:white;
  254. letter-spacing: 0px;
  255. opacity: 0.0;
  256. transition: all 0.7s ease-out;
  257. -o-transition-transition: all 0.7s ease-out;
  258. -webkit-transition: all 0.7s ease-out;
  259. -moz-transition: all 0.7s ease-out;
  260. border-top-right-radius:90px;
  261. -moz-border-top-right-radius:90px;
  262. -webkit-border-top-right-radius:90px;
  263.  
  264. }
  265.  
  266. .entry:hover .perma{
  267. margin-left: 0px;
  268. left:1px;
  269. overflow:visible;
  270. opacity:0.85;
  271. transition: all 0.7s ease-out;
  272. -o-transition-transition: all 0.7s ease-out;
  273. -webkit-transition: all 0.7s ease-out;
  274. -moz-transition: all 0.7s ease-out;
  275. }
  276.  
  277. #posts {
  278. width:480px;
  279. margin-top:74px;
  280. margin-left:305px;
  281. right:auto;
  282. background:transparent;
  283. margin-right:auto;
  284. position:relative;
  285. overflow-y: hidden;
  286. }
  287.  
  288. #sidebar img{
  289. width:{text:sidebar width}px;
  290. transition: all 0.7s ease-out;
  291. -o-transition-transition: all 0.7s ease-out;
  292. -webkit-transition: all 0.7s ease-out;
  293. -moz-transition: all 0.7s ease-out;
  294. }
  295.  
  296. #sidebar{
  297. position:fixed !important;
  298. width:{text:sidebar width}px;
  299. background-image:url('');
  300. background:;
  301. height:auto;
  302. padding:0px;
  303. margin-top:{text:sidebar margin top}px;
  304. margin-left:{text:sidebar margin left}px;
  305. line-height:8px;
  306. text-align:center;
  307. opacity:0.9;
  308. border:0px dotted #bbb;
  309. transition: all 0.7s ease-out;
  310. -o-transition-transition: all 0.7s ease-out;
  311. -webkit-transition: all 0.7s ease-out;
  312. -moz-transition: all 0.7s ease-out;
  313. }
  314.  
  315. #linkz{
  316. margin-top:54px;
  317. width:398px;
  318. text-align:center;
  319. position:fixed;
  320. letter-spacing:1px;
  321. z-index:999;
  322. margin-left:307px;
  323. }
  324.  
  325.  
  326.  
  327. @font-face { font-family: "rawengulksans"; src: url('http://static.tumblr.com/u37ad6e/i1rm8cst5/rawengulksans-094.ttf'); }
  328.  
  329. .title{
  330. font-family:rawengulksans;
  331. font-size: 14px;
  332. line-height: 13px;
  333. color:{color:Title};
  334. letter-spacing: 1px;
  335. font-weight: normal;
  336. padding:0px 0px 0px 0px;
  337. }
  338.  
  339. @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  340.  
  341. @font-face { font-family: "signerica"; src: url('http://static.tumblr.com/yo59jgt/m4om1rino/signerica_fat.ttf'); }
  342.  
  343.  
  344. #ban{
  345. width:398px;
  346. height:65px;
  347. border:1px solid #ddd;
  348. margin-top:5px;
  349. margin-left:307px;
  350. position:fixed;
  351. z-index:2;
  352. background:white;
  353. opacity:0.85;
  354. border-top-left-radius:45px;
  355. border-top-right-radius:45px;
  356. }
  357.  
  358. #banban{
  359. z-index:1;
  360. position:fixed;
  361. width:400px;
  362. margin-top:0px;
  363. height:70px;
  364. margin-left:307px;
  365. background-color:{color:background};
  366. background-image:url('{image:background}');
  367. }
  368.  
  369. #title{
  370. color:{color:blogtitle};
  371. font-family:signerica;
  372. text-shadow:1px 2px 1px {color:blogtitle shadow};
  373. width: 420px;
  374. text-align: center;
  375. margin-top: 13px;
  376. margin-left: 297px;
  377. position:fixed;
  378. z-index:99;
  379. font-size:25px;
  380. line-height:40px;
  381. }
  382. #titlebar {
  383. background-color: {color:titlebar background};
  384. color: {color:titlebar background};
  385. padding-top: 8px;
  386. padding-bottom: 8px;
  387. float: left;
  388. font-size:25px;
  389. letter-spacing:0px;
  390. text-align: center;
  391. margin-top: 22px;
  392. margin-left: 297px;
  393. position: fixed;
  394. width:420px;
  395. z-index: 2;
  396. opacity:0.95;
  397. border-top-left-radius:45px;
  398. border-top-right-radius:45px;
  399. }
  400.  
  401. #thang {
  402. border-top: 10px solid {color:blogtitle shadow};
  403. border-right: 10px solid transparent;
  404. position: absolute;
  405. margin-top: 8px;
  406. margin-left: 410px;
  407.  
  408. }
  409. #thang2 {
  410. border-top: 10px solid {color:blogtitle shadow};
  411. border-left: 10px solid transparent;
  412. position: absolute;
  413. margin-top: 8px;
  414. margin-left: 0px;
  415.  
  416. }
  417.  
  418. .permalink{
  419. text-transform: normal;
  420. display: block;
  421. text-align: right;
  422. text-decoration: none;
  423. }
  424.  
  425. #infscr-loading{
  426. bottom: -70px;
  427. position: absolute;
  428. left: 50%;
  429. margin-left:-8px;
  430. width:16px;
  431. height:11px;
  432. overflow:hidden;
  433. margin-bottom: 50px;
  434. }
  435.  
  436. #postnotes{
  437. text-align: justify;}
  438.  
  439. #postnotes blockquote{
  440. border: 0px;}
  441.  
  442. blockquote{
  443. padding:0px 0px 2px 5px;
  444. margin:0px 0px 2px 10px;
  445. border-left: 1px dotted #555555;
  446. }
  447.  
  448. blockquote p, ul{
  449. margin:0px;
  450. padding:0px;
  451. }
  452.  
  453. a img{border: 0px;}
  454.  
  455.  
  456. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  457.  
  458. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  459. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  460.  
  461. .notes img{width:10px; position:relative; top:3px;}
  462. <--ses-->
  463. small{font-size: 90%;}
  464.  
  465. {CustomCSS}
  466.  
  467. </style>
  468.  
  469. {block:IndexPage}
  470. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  471. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  472.  
  473. <script type="text/javascript">
  474. $(window).load(function () {
  475. var $content = $('#posts');
  476. $content.masonry({itemSelector: '.entry'}),
  477. $content.infinitescroll({
  478. navSelector : 'div#pagination',
  479. nextSelector : 'div#pagination a#nextPage',
  480. itemSelector : '.entry',
  481. loading: {
  482. finishedMsg: '',
  483. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  484. },
  485. bufferPx : 600,
  486. debug : false,
  487. },
  488. // call masonry as a callback.
  489. function( newElements ) {
  490. var $newElems = $( newElements );
  491. $newElems.hide();
  492. // ensure that images load before adding to masonry layout
  493. $newElems.imagesLoaded(function(){
  494. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  495.  
  496.  
  497. });
  498. });
  499. });
  500. </script>
  501.  
  502. {/block:IndexPage}
  503.  
  504.  
  505. <title>{title}</title>
  506.  
  507. <link rel="shortcut icon" href="{Favicon}" />
  508. <meta name="viewport" content="width=820" />
  509. </head>
  510.  
  511. <body>
  512.  
  513. <div class="wrapper">
  514. <div class="header">
  515. </div>
  516.  
  517. <div id="cage">
  518. <div id="center">
  519. <div id="title">{title}</div>
  520. <div id="banban"></div>
  521. <div id="ban"></div>
  522.  
  523. <div id="titlebar"> &middot;<div id="thang2"></div>
  524. <div id="thang"></div></div>
  525.  
  526. <div id="linkz"><a href="/">{text:link one title}</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#?w=360" rel="02" class="poplight">{text:link two title}</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#?w=320" rel="links" class="poplight">{text:link three title}</a>{block:iflinkfourtitle}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="{text:link four}">{text:link four title}</a>{/block:iflinkfourtitle}{block:iflinkfivetitle}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="{text:link five}">{text:link five title}</a>{/block:iflinkfivetitle}</div>
  527.  
  528.  
  529. <div id="sidebar">
  530.  
  531. <center>
  532. <a href="/"><img src="{image:sidebar}"></a><br>
  533. {Description}</center>
  534. </div>
  535.  
  536.  
  537.  
  538.  
  539. <div class="left">
  540. <div id="posts">
  541. {block:Posts}
  542. <div class="entry">
  543.  
  544. {block:Answer}
  545. <div style="margin-top:2px; margin-bottom:0px; min-height:30px; padding: 3px; background-color: #eee;">
  546. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px;"/>
  547. {Asker}: {Question}</div>
  548. <div style="margin-top:2px; margin-bottom:4px; background: transparent;">{Answer}</div>
  549. <div class="permalink"> <a href="{permalink}">{notecountwithlabel}</a> </div>
  550. {/block:Answer}
  551.  
  552. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  553. {/block:Text}
  554.  
  555. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  556.  
  557. {block:Photo}
  558. {block:IndexPage}
  559. <center>
  560. <div class="perma">
  561. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  562. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  563. {/block:IndexPage}
  564. {block:PermalinkPage}
  565. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>{LinkCloseTag}
  566. {/block:PermalinkPage}
  567. {/block:Photo}
  568.  
  569. {block:Photoset}
  570. {block:IndexPage}
  571. <center>
  572. <div class="perma">
  573. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  574. {Photoset-250}</center>
  575. {/block:IndexPage}
  576. {block:PermalinkPage}
  577. <center>
  578. {Photoset-500}</center>
  579. {/block:PermalinkPage}
  580. {/block:Photoset}
  581.  
  582. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  583.  
  584. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  585. <ul class="chat">
  586. {block:Lines}
  587. <li class="user_{UserNumber}">
  588. {block:Label}
  589. <span class="label">{Label}</span>
  590. {/block:Label}
  591.  
  592. {Line}
  593. </li>
  594. {/block:Lines}
  595. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
  596. {/block:Chat}
  597.  
  598. {block:Audio}
  599. <div style="width:190px; height:30px;">
  600. {AudioPlayerBlack}
  601. </div>
  602. {block:IndexPage}<span class="permalink">
  603. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
  604. </span>{/block:IndexPage}
  605. {/block:Audio}
  606.  
  607. {block:Video}
  608. {block:IndexPage}
  609. <center>
  610. <div class="perma">
  611. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  612. {Video-250}</center>
  613. {/block:IndexPage}
  614. {block:PermalinkPage}
  615. <center>
  616. {Video-400}</center>
  617. {/block:PermalinkPage}
  618. {block:Video}
  619.  
  620.  
  621. {block:PostNotes}<div align="middle">{caption}</div>
  622. <center>
  623.  
  624. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  625.  
  626. {block:HasTags}
  627. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  628. {block:RebloggedFrom}
  629. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  630. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  631.  
  632. {/block:RebloggedFrom}
  633. </center></span>
  634. <br>
  635. <div id="postnotes">{PostNotes}</div><br>
  636.  
  637. <center>{block:ContentSource}
  638. <br><a href="{SourceURL}">
  639. {lang:Source}:
  640. {block:SourceLogo}
  641. <img src="{BlackLogoURL}" width="{LogoWidth}"
  642. height="{LogoHeight}" alt="{SourceTitle}" />
  643. {/block:SourceLogo}
  644. {block:NoSourceLogo}
  645. {SourceLink}
  646. {/block:NoSourceLogo}
  647. </a>
  648. {/block:ContentSource}</center>
  649.  
  650. {/block:PostNotes}
  651. </div>
  652. {/block:Posts}
  653. </div></div>
  654.  
  655. {block:IndexPage}
  656. {block:Pagination}
  657. <div id="pagination">
  658. {block:NextPage}
  659. <a id="nextPage" href="{NextPage}"></a>
  660. {/block:NextPage}
  661. {block:PreviousPage}
  662. <a href="{PreviousPage}"></a>
  663. {/block:PreviousPage}
  664. </div>
  665. {/block:Pagination}
  666. {/block:IndexPage}
  667. </body>
  668. <div id="links" class="popup_block">
  669. <center><div style="color:{color:blogtitle};font-family:signerica;font-size:20px;line-height:18px; letter-spacing:0px;text-shadow:1px 2px 1px {color:blogtitle shadow}; "> links </div>
  670. <div style="line-height:11px;">
  671. <P> links here ok </p>
  672. </div>
  673. </div>
  674.  
  675. <div id="02" class="popup_block"><center>
  676. <div style="color:{color:blogtitle};font-family:signerica;font-size:20px;line-height:18px; letter-spacing:0px;text-shadow:1px 2px 1px {color:blogtitle shadow}; ">faq & ask</div>
  677. <div style="line-height:11px;">
  678. <p>faq here ok </p>
  679.  
  680. <iframe frameborder="0" scrolling="no" width="100%" height="150" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></center></iframe>
  681. </div>
  682.  
  683. </div></div></div></div></div></div></div></div></div></div>
  684.  
  685. <div style="position:fixed;right:5px;bottom:5px;"><a href="http://miserywishes.tumblr.com">&hearts;</a></div>
  686. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement