Advertisement
manon15

code for likewalnuts

Jan 12th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/immortalbloodvirus. don't take as your own!-->
  5.  
  6.  
  7. <meta name="color:background" content="#ffffff"/>
  8. <meta name="color:text" content="#000000"/>
  9. <meta name="color:link" content="#000000"/>
  10. <meta name="color:link hover" content="#ddd"/>
  11. <meta name="color:border" content="#000000"/>
  12. <meta name="color:hoverlink text" content="#000000"/>
  13. <meta name="color:scrollbar bg" content="#6b6d6d"/>
  14. <meta name="color:tooltip color" content="#6b6d6d"/>
  15. <meta name="color:title color" content="#000000"/>
  16. <meta name="color:blockquote color" content="#000000"/>
  17.  
  18.  
  19.  
  20. <meta name="text:bg image url" content=""/>
  21. <meta name="color:bold" content=""/>
  22. <meta name="color:bold shadow" content=""/>
  23. <meta name="color:italics" content=""/>
  24. <meta name="color:italics shadow" content=""/>
  25. <meta name="text:title text" content="title">
  26. <meta name="text:Link 1 URL" content="" />
  27. <meta name="text:Link 1" content="link 1" />
  28. <meta name="text:Link 2 URL" content="" />
  29. <meta name="text:Link 2" content="link 2" />
  30. <meta name="text:Link 3 URL" content="" />
  31. <meta name="text:Link 3" content="link 3" />
  32. <meta name="text:Link 4 URL" content="" />
  33. <meta name="text:Link 4" content="link 4" />
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. <head><title>{Title}</title>
  42. <link rel="shortcut icon" href="{Favicon}">
  43. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  44. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  45.  
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  48. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  50. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  51. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  52. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  53. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  56. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  57. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  58. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  59. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  60. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  61. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  62. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  63. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  64. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  65. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  66. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  67. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  68. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  69. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  70.  
  71.  
  72. <script type="text/javascript"
  73. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  74. <script>
  75. $(document).ready(function() {
  76. //
  77. $('a.poplight[href^=#]').click(function() {
  78. var popID = $(this).attr('rel'); //Get Popup Name
  79. var popURL = $(this).attr('href'); //Get Popup href to define size
  80. var query= popURL.split('?');
  81. var dim= query[1].split('&');
  82. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  83. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  84. var popMargTop = ($('#' + popID).height() + 80) / 2;
  85. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  86. //Apply Margin to Popup
  87. $('#' + popID).css({
  88. 'margin-top' : -popMargTop,
  89. 'margin-left' : -popMargLeft
  90. });
  91. $('body').append('<div id="fade"></div>');
  92. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  93. return false;
  94. });
  95. $('a.close, #fade').live('click', function() {
  96. $('#fade , .popup_block').fadeOut(function() {
  97. $('#fade, a.close').remove(); //fade them both out
  98. });
  99. return false;
  100. });
  101. });
  102. </script>
  103.  
  104.  
  105.  
  106.  
  107. <style type="text/css">
  108.  
  109. .popup_block{
  110. display:none;
  111. font-size:12px;
  112. background:#a0a1a1;
  113. font-family:'calibri';
  114. padding:20px;
  115. border:1px solid #848584; /* if you want a solid white pop-up, delete this */
  116. float:left;
  117. position:fixed;
  118. top:50%;left:50%;
  119. z-index: 99999;
  120. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  121. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  122. box-shadow: 0px 0px 20px #848584; /* delete for solid white */
  123. }
  124.  
  125. *html #fade {position: absolute;}
  126. *html .popup_block {position: absolute;}
  127. #fade {
  128. display:none;
  129. position:fixed;
  130. left:0px;
  131. top:0px;
  132. width:100%;
  133. height:100%;
  134. z-index:9999;
  135. background:#000; /* change to #fff for solid white */
  136. opacity:0.5; /* change to opacity:1; */
  137. }
  138.  
  139.  
  140. /* --- UPDATES ---*/
  141.  
  142. #updates {
  143. font-size:10px;
  144. font-family: 'calibri';
  145. color:#fff;
  146. text-align:left;
  147. background-color:transparent;
  148. height:45px;
  149. width:220px;
  150. padding:4px;
  151. top:20px;
  152. left:10px;
  153. z-index:10;
  154. position:fixed;
  155. overflow:hidden;
  156. -webkit-transition: all 0.5s ease-in-out;
  157. -moz-transition: all 0.5s ease-in-out;
  158. -o-transition: all 0.5s ease-in-out;
  159. }
  160.  
  161. #updates:hover {
  162. height:200px;
  163. -webkit-transition: all 0.5s ease-in-out;
  164. -moz-transition: all 0.5s ease-in-out;
  165. -o-transition: all 0.5s ease-in-out;
  166. }
  167.  
  168. #updatestitle {
  169. text-transform:uppercase;
  170. font-family:arial;
  171. font-weight:bold;
  172. text-align:center;
  173. color:#fff;
  174. font-family:'Six caps';
  175. font-size:40px;
  176. letter-spacing:1.5px;
  177. }
  178.  
  179.  
  180.  
  181.  
  182. /*edit scrollbar*/
  183.  
  184. ::-webkit-scrollbar-thumb {
  185. height:auto;
  186. }
  187.  
  188. ::-webkit-scrollbar {
  189. height:4px;
  190. width:3px;
  191. padding-right:2px;
  192. }
  193. /*edit the body this is what post text looks like, background color, etc.*/
  194.  
  195. body {
  196. background-image:url("http://i.imgur.com/pF4hQDB.png");
  197. background-position:absolute;
  198. background-attachment:fixed;
  199. background-repeat:no-repeat;
  200. background-color:#000;
  201. margin:0px;
  202. color:#848584;
  203. font-family:arial;
  204. font-size:10px;
  205. line-height:100%;
  206. }
  207.  
  208. /*edit links*/
  209.  
  210. a {
  211. text-decoration:none;
  212. outline:none;
  213. -moz-outline-style:none;
  214. color:#848584;
  215. -moz-transition-duration:0.8s;
  216. -webkit-transition-duration:0.8s;
  217. -o-transition-duration:0.8s;
  218. }
  219.  
  220. /*edit link hover*/
  221.  
  222. a:hover {
  223. color:#fff;
  224. outline:none;
  225. -moz-outline-style:none;
  226. text-decoration:none;
  227. }
  228.  
  229. img {
  230. opacity:.8;
  231. -webkit-filter: Grayscale(50%);
  232. -webkit-transition-duration: 0.8s;
  233. -moz-transition-duration:0.8s;
  234. transition-duration:0.8s;
  235. -o-transition-duration:0.8s;
  236. -webkit-filter: blur(1px);
  237. }
  238.  
  239. img:hover {
  240. opacity:1;
  241. -webkit-filter: Grayscale(0%);
  242. -webkit-transition: all 0.8s ease-out;
  243. -moz-transition: all 0.8s ease-out;
  244. transition: all 0.8s ease-out;
  245. -webkit-filter: blur(0px);
  246.  
  247. }
  248.  
  249. blockquote {
  250. padding-left:5px;
  251. border-left:2px solid #d0d0ce;
  252.  
  253. }
  254.  
  255. blockquote blockquote {
  256. padding-left:5px;
  257. border-left:2px solid;
  258. }
  259.  
  260. h1 {
  261. font-size:22px;
  262. text-align:left;
  263. font-family:"six caps";
  264. text-align:center;
  265. line-height:105%;
  266. letter-spacing:1px;
  267. color:#d0d0ce;
  268. }
  269.  
  270.  
  271.  
  272. #title {
  273. color:#848584;
  274. font-family:arial;
  275. font-size:16px;
  276. text-transform:lowercase;
  277. font-weight:bold;
  278. letter-spacing:0px;
  279. padding:4px;
  280. margin-top:-20px;
  281. margin-left:-14px;
  282. position:fixed;
  283. text-align:left;
  284. }
  285.  
  286.  
  287.  
  288. /*sidebar links*/
  289.  
  290. #links {
  291. width:200px;
  292. margin-top:535px;
  293. margin-left:1050px;
  294. padding:5px;
  295. font-family:arial;
  296. text-align:left;
  297. word-spacing:1px;
  298. font-size:9px;
  299. font-weight:bold;
  300. display:block;
  301. color:#000;
  302. opacity:.8;
  303. -webkit-transition-duration: 0.8s;
  304. -moz-transition-duration:0.8s;
  305. transition-duration:0.8s;
  306. -o-transition-duration:0.8s;
  307. -webkit-filter: blur(0px);
  308. transform: rotate(0)deg);
  309. -ms-transform: rotate(0deg);
  310. -webkit-transform: rotate(0deg);
  311. -o-transform: rotate(0deg);
  312. -moz-transform: rotate(0deg);
  313.  
  314. }
  315.  
  316. #links a {
  317. letter-spacing: 1px;
  318. padding:3px;
  319.  
  320. }
  321.  
  322. #links a:hover {
  323. color:#000;
  324. opacity:1;
  325. -webkit-transition: all 0.8s ease-out;
  326. -moz-transition: all 0.8s ease-out;
  327. transition: all 0.8s ease-out;
  328. -webkit-filter: blur(0px);
  329. }
  330.  
  331. #description {
  332. width:208px;
  333. font-size:11px;
  334. padding:5px;
  335. text-align:justify;
  336. letter-spacing:0px;
  337. line-height:90%;
  338. margin-left:-16px;
  339. margin-top:-2px;
  340. }
  341.  
  342. /* this is the box that comes up when you hover over something with a title*/
  343.  
  344. #s-m-t-tooltip {
  345. max-width:300px;
  346. padding:5px 5px 5px 6px;
  347. margin:20px 0px 0px 20px;
  348. background-color:{color:tooltip color};
  349. font-family:arial;
  350. font-size:9px;
  351. letter-spacing:2px;
  352. text-transform:lowercase;
  353. font-weight:bold;
  354. color:#fff;
  355. z-index:999999999999999999999999999999999999;
  356. }
  357.  
  358. /*next page and previous page*/
  359.  
  360. #pagination {
  361. margin-left:1065px;
  362. color:#000;
  363. margin-top: -70px;
  364. position: relative;
  365. text-align: left;
  366. letter-spacing:1px;
  367. text-transform: lowercase;
  368. font-weight:bold;
  369. font-family: arial;
  370. font-size: 30px;
  371. opacity:.8;
  372. -webkit-transition-duration: 0.8s;
  373. -moz-transition-duration:0.8s;
  374. transition-duration:0.8s;
  375. -o-transition-duration:0.8s;
  376. -webkit-filter: blur(1px);
  377. transform: rotate(0)deg);
  378. -ms-transform: rotate(0deg);
  379. -webkit-transform: rotate(0deg);
  380. -o-transform: rotate(0deg);
  381. -moz-transform: rotate(0deg);
  382.  
  383.  
  384. }
  385.  
  386. #pagination a {
  387. padding:0 3px;
  388. opacity:1;
  389. -webkit-filter: Grayscale(0%);
  390. -webkit-transition: all 0.8s ease-out;
  391. -moz-transition: all 0.8s ease-out;
  392. transition: all 0.8s ease-out;
  393. -webkit-filter: blur(0px);
  394.  
  395. }
  396.  
  397.  
  398. #container {
  399. position: fixed;
  400. width:255px;
  401. height:426px;
  402. margin-left:486px;
  403. margin-top:-339px;
  404. overflow: auto;
  405. -ms-transform: rotate(0deg);
  406. -webkit-transform: rotate(0deg);
  407. transform: rotate(0deg);
  408. }
  409.  
  410.  
  411. #post {
  412. width:250px;
  413. margin-top:5px;
  414. margin-left:300px;
  415. text-align:left;
  416. font-size:11px;
  417. line-height:110%;
  418. color:#5c5c5c;
  419. margin-left:auto;
  420. margin-right:auto;
  421. }
  422.  
  423.  
  424. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  425.  
  426. b, strong{
  427. color: #fff;
  428. font-size:15px;
  429. font-family:"Bad script";
  430. letter-spacing:2px;
  431. line-height:115%;
  432. text-shadow: 0px 1px 4px #848584;
  433. font-weight: bold;
  434. text-transform:uppercase;
  435. }
  436.  
  437. i, em, strong {
  438. color: #fff;
  439. font-size:15px;
  440. line-height:115%;
  441. font-family:"satisfy";
  442. letter-spacing:2px;
  443. text-shadow:0px 1px 4px #848584;
  444. font-weight: italic;
  445.  
  446. }
  447.  
  448. /*time posted, note count, via and source*/
  449.  
  450. .postinfo {
  451. font-family:'Six caps';
  452. width:238px;
  453. margin-top:1px;
  454. padding:6px;
  455. font-size:15px;
  456. color:#fff;
  457. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  458. background-image:url('http://i.imgur.com/JiKm3fc.png');
  459. opacity:.66;
  460. border-radius: 20px 20px 20px 20px;
  461. letter-spacing:1px;
  462. border-bottom:1px #000;
  463. text-transform:uppercase;
  464. font-style:normal;
  465. text-align:center;
  466. }
  467.  
  468. .postinfo a {
  469. color:#fff;
  470. font-style:normal;
  471. }od now
  472.  
  473. .postinfo a:hover {
  474. color:#bebebe;
  475. }
  476.  
  477.  
  478. /*tags*/
  479.  
  480. .tags {
  481. width:238px;
  482. margin-top:4px;
  483. margin-left:-1px;
  484. padding:2px;
  485. font-family:arial;
  486. letter-spacing:0px;
  487. font-size:10px;
  488. text-align:left;
  489.  
  490. }
  491.  
  492. .tags a {
  493. color:#838483;
  494. }
  495.  
  496. .tags a:hover {
  497. color:#fff;
  498. }
  499.  
  500. .postnote {
  501. width:248px;
  502. margin-top:40px;
  503. font-family:arial;
  504. text-transform:lowercase;
  505. font-style:normal;
  506. letter-spacing:0px;
  507. font-size:10px;
  508. text-align:left;
  509. }
  510.  
  511. /*here go asks*/
  512.  
  513. #ask {
  514. float:left;
  515. line-height:130%;
  516. border: 1px #838483;
  517. font-family:"calibri";
  518. font-size:12px;
  519.  
  520. }
  521.  
  522.  
  523.  
  524. /*audio player container*/
  525.  
  526. .playercontainer {
  527. text-align:left;
  528. padding:10px;
  529. padding-left:0px;
  530. background-color:#fff;
  531. width:480px;
  532. }
  533.  
  534. /*artist, song, etc.*/
  535.  
  536. .musicinfo {
  537. padding-top:7px;
  538. padding-left:50px;
  539. color:#000;
  540. text-align:justify;
  541. }
  542.  
  543. /*credit. only change this if you actually make the code your own*/
  544.  
  545. #credit {
  546. position:fixed;
  547. font-size:3px;
  548. color:#848584;
  549. font-weight:none;
  550. line-height:50%;
  551. letter-spacing:2px;
  552. right:10px;
  553. bottom:05px;
  554. text-transform:none;
  555. text-align:left;
  556. }
  557.  
  558. #credit a {
  559. letter-spacing: 0px;
  560. padding:3px;
  561. color:#848585;
  562. }
  563.  
  564. #credit a:hover {
  565. background:#000;
  566. color:#848584;
  567. }
  568.  
  569.  
  570.  
  571. {CustomCSS}</style></head><body>
  572.  
  573.  
  574. <!-- begin updates tab -->
  575.  
  576. <div id="updates">
  577. <div id="updatestitle"><br>UPDATES</div>
  578.  
  579. <div style="padding-top:10px;">
  580. <br><br>
  581. <big><center><FONT COLOR="#848584"><i>wuddup homie</i></FONT></center></big>
  582. <center>THIS IS WHERE YOU PUT ANY EXTRA INFO. IF YOU WANT A SMALL LINE BREAK DO <BR> AND IF YOU WANT A LARGE LINE BREAK IT'S <P>. FOR A HORIZONTAL LINE, DO <HR WIDTH=100%><P>
  583. AND IF YOU WANT WORDS TO MOVE ACROSS THE UPDATES TAB, DO
  584. <marquee>LOOKY HERE THIS IS MOVING</marquee><br>
  585. AND IF YOU WANT TO MAKE A WORD BOLD DO <B>HEYA</B> AND ITALICS <I>HOLA</I>. hope this helps!
  586. </center>
  587.  
  588.  
  589.  
  590. </div></div>
  591.  
  592. <!-- end updates tab -->
  593.  
  594.  
  595. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  596. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  597. <script>
  598.  
  599. (function($){
  600.  
  601. $(document).ready(function(){
  602.  
  603. $("a[title]").style_my_tooltips({
  604.  
  605. tip_follows_cursor:true,
  606.  
  607. tip_delay_time:50,
  608.  
  609. tip_fade_speed:600,
  610.  
  611. attribute:"title"
  612.  
  613. });
  614.  
  615. });
  616.  
  617. })(jQuery);
  618.  
  619. </script>
  620.  
  621.  
  622.  
  623.  
  624. <div id="links">
  625. <a href="/" title="home">✕</a>
  626.  
  627.  
  628. <a href="#?w=500" title="inquire" rel="box1" class="poplight">✕</a>
  629.  
  630. <a href="#?w=400" title="rules" rel="box2" class="poplight">✕</a>
  631.  
  632. <a href="#?w=400" title="about" rel="box3" class="poplight">✕</a>
  633.  
  634. <a href="#?w=400" title="navi" rel="box4" class="poplight">✕</a>
  635.  
  636.  
  637.  
  638.  
  639. </div>
  640.  
  641. <div id="description">{Description}</div>
  642.  
  643.  
  644. <div id="pagination">
  645. {block:Pagination}
  646. {block:PreviousPage}
  647. <a href="{PreviousPage}">&larr;</a>
  648. {/block:PreviousPage}
  649.  
  650.  
  651. {block:NextPage}
  652. <a href="{NextPage}">&rarr;</a>
  653. {/block:NextPage}
  654. {/block:Pagination}
  655. </div>
  656.  
  657.  
  658.  
  659. </div>
  660.  
  661.  
  662. <div id="container">{block:Posts}<div id="post">
  663.  
  664. {block:Text}<h1>{block:Title}<big><big>{Title}</big></big>{/block:Title}</h1>{Body}{/block:Text}
  665.  
  666. {block:Quote}<big><b>"{Quote}"</b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  667.  
  668. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  669.  
  670. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  671.  
  672. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  673.  
  674. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  675.  
  676. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  677.  
  678.  
  679. {block:AudioPlayer}
  680. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px;width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;font-weight:bold;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  681.  
  682. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  683. — {ASKER}<br><br>
  684. {Answer}<br>{/block:Answer}
  685.  
  686. {block:Date}<div class="postinfo"> <a href="{Permalink}">{TimeAgo}</a>   {block:NoteCount}+ {NoteCount}{/block:NoteCount}   {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:Date}
  687.  
  688. {block:HasTags}
  689. <div class="tags">
  690. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  691. {/block:HasTags}
  692.  
  693. <div class="postnote">
  694. {block:PostNotes}{PostNotes}{/block:PostNotes}
  695. </div>
  696. </div>
  697. {/block:Posts}
  698.  
  699.  
  700.  
  701.  
  702. </div></div></div></div>
  703. </div>
  704.  
  705. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  706. <i>Manon</i></a></font><div>
  707.  
  708. </body>
  709.  
  710. </div></div></div></div></div></div></div></div></div></div>
  711. <div id="box1" class="popup_block">
  712. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  713. </div>
  714. </div></div></div></div></div></div></div></div></div></div>
  715.  
  716. <div id="box2" class="popup_block">
  717. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  718. CONTENT
  719. CONTENT
  720. CONTENT
  721. </div>
  722. </div>
  723.  
  724. </div></div></div></div></div></div></div></div></div></div>
  725.  
  726. <div id="box3" class="popup_block">
  727. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  728. CONTENT
  729. CONTENT
  730. CONTENT
  731. </div>
  732. </div>
  733.  
  734. </div></div></div></div></div></div></div></div></div></div>
  735.  
  736. <div id="box4" class="popup_block">
  737. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  738. <center><a href="/LINK HERE">TITLE HERE</a>
  739. <p>
  740. <a href="/LINK HERE">TITLE HERE</a>
  741. <p><a href="/LINK HERE">TITLE HERE</a>
  742. <p><a href="/LINK HERE">TITLE HERE</a>
  743. <p><a href="/LINK HERE">TITLE HERE</a>
  744. <p><a href="/LINK HERE">TITLE HERE</a>
  745. <p>
  746.  
  747.  
  748. </center><p>
  749.  
  750.  
  751. </div>
  752. </div>
  753.  
  754. </div></div></div></div></div></div></div></div></div></div>
  755.  
  756. <div id="box5" class="popup_block">
  757. <center>theme coding belongs to &nbsp;<i><a href="http://immortalbloodvirus.tumblr.com">Manon</a></i>.<br> do not remove the credit nor claim as your own. if you <b>HAVE</b> to take this credit out, make sure you credit me on a <b>VISIBLE</b> and often visited page.</center>
  758. </div>
  759.  
  760. </div></div></div></div></div></div></div></div></div></div>
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement