Advertisement
lojsan7

richietheme

May 5th, 2015
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.13 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>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script>
  35. <title>{Title}</title>
  36. <link rel="shortcut icon" href="{Favicon}">
  37. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  38. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  39.  
  40. <!---- this is theme 44 by Hollywhood
  41. please don't remove the credit
  42. thank you
  43. --->
  44.  
  45. <meta name="color:Background" content="#ffffff"/>
  46. <meta name="color:Text" content="#9B9B9B"/>
  47. <meta name="color:Link" content="#b8b8b8"/>
  48. <meta name="color:scrollbar" content="#999999">
  49. <meta name="color:title" content="#999999">
  50. <meta name="color:Link Hover" content="#eeeeee"/>
  51.  
  52. <meta name="image:sidebar" content=""/>
  53. <meta name="text:sidebartitle" content="">
  54.  
  55. <meta name="text:link1" content="" />
  56. <meta name="text:link1 url" content="/">
  57. <meta name="text:link2" content="" />
  58. <meta name="text:link2 url" content="/">
  59. <meta name="text:link3" content="" />
  60. <meta name="text:link3 url" content="/">
  61. <meta name="text:link4" content="" />
  62. <meta name="text:link4 url" content="/">
  63. <meta name="text:link5" content="" />
  64. <meta name="text:link5 url" content="/">
  65.  
  66.  
  67. <style type="text/css">
  68.  
  69. .popup_block{
  70. display:none;
  71. background:#cccccc;
  72. padding:20px;
  73. border:1px solid #030303; /* if you want a solid white pop-up, delete this */
  74. float:left;
  75. position:fixed;
  76. top:50%;left:50%;
  77. width: 400px;
  78. height: 300px;
  79. overflow-y:scroll;
  80. overflow-x:hidden;
  81. z-index: 99999;
  82. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  83. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  84. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  85. }
  86.  
  87. *html #fade {position: absolute;}
  88. *html .popup_block {position: absolute;}
  89. #fade {
  90. display:none;
  91. position:fixed;
  92. left:0px;
  93. top:0px;
  94. width:100%;
  95. height:100%;
  96. z-index:9999;
  97. background:#000; /* change to #fff for solid white */
  98. opacity:0.5; /* change to opacity:1; */
  99. }
  100.  
  101. ::-webkit-scrollbar-thumb{
  102. background-color: #000000;
  103. border: 0px solid {color:background};
  104. height:auto;
  105. }
  106.  
  107. ::-webkit-scrollbar {
  108. height:auto;
  109. width:5px;
  110. background-color: {color:scrollbar};
  111. border:0px solid {color:background};
  112. }
  113.  
  114.  
  115. iframe#tumblr_controls {
  116. white-space:nowrap;
  117. -webkit-filter: invert(100%);
  118. -moz-filter: invert(100%);
  119. -o-filter: invert(100%);
  120. -ms-filter: invert(100%);
  121. filter: invert(100%);
  122. opacity:.2;transition: .8s ease-in-out;
  123. -webkit-transition: .8s ease-in-out;
  124. -moz-transition: .8s ease-in-out;
  125. -o-transition: .8s ease-in-out;
  126. }
  127.  
  128. h1 {
  129. font-weight:normal;
  130. font-size:14px;
  131. text-align:center;
  132. font-style:normal;
  133. line-height:100%;
  134. letter-spacing:1px;
  135. text-transform:normal;
  136. color:{color:text};
  137. }
  138.  
  139. h2 {
  140. font-size:22px;
  141. text-align:center;
  142. line-height:100%;
  143. letter-spacing:-0.5px;
  144. color:#000000;
  145. text-shadow:1px 1px 15px #000000;
  146. font-weight:bold;
  147. text-transform:uppercase;
  148. padding:5px;
  149. padding-bottom:2px;
  150. }
  151.  
  152.  
  153. blockquote {
  154. border-left:1px solid #ccc;
  155. padding:17px;
  156. margin:10px 2px 0px 10px
  157. background-color:#fafafa;
  158. }
  159.  
  160. body {
  161. background:{color:background};
  162. background-image: url('http://i.imgur.com/Py2XaHA.png');
  163. background-repeat: no-repeat;
  164. background-size: center;
  165. background-attachment: fixed;
  166. position: absolute;
  167. margin-left:720px;
  168. color:{color:text};
  169. font-family:iskoola pota;
  170. font-size:12px;
  171. line-height:100%;
  172. }
  173.  
  174. b,bold,strong {
  175. color:#000000;
  176. font-family:times;
  177. font-size:13px;
  178. text-shadow: 1px 1px 15px #cddae6;
  179. }
  180.  
  181. i,em,italic {
  182. color:#909090;
  183. font-family:times;
  184. font-size:12px;
  185. text-shadow: 1px 1px 15px #ffffff;}
  186.  
  187. a {
  188. text-decoration:none;
  189. outline:none;
  190. -moz-outline-style:none;
  191. color:{color:link};
  192. -moz-transition-duration:0.5s;
  193. -webkit-transition-duration:0.5s;
  194. -o-transition-duration:0.5s;
  195. }
  196.  
  197. a:hover {
  198. text-decoration:none;
  199. outline:none;
  200. -moz-outline-style:none;
  201. color:{color:link hover};
  202. }
  203.  
  204. img {
  205. border:none;
  206. }
  207.  
  208.  
  209. #post {
  210. width:400px;
  211. margin-top:50px;
  212. margin-bottom:5px;
  213. opacity:0.8;
  214. -webkit-transition: all 0.6s ease-in-out;
  215. -moz-transition: all 0.6s ease-in-out;
  216. -o-transition: all 0.6s ease-in-out;
  217. -ms-transition: all 0.6s ease-in-out;
  218. transition: all 0.6s ease-in-out;
  219. -webkit-filter:grayscale(100%);
  220. -webkit-transition: all 0.6s ease-in-out;
  221. }
  222.  
  223. #post:hover {
  224.  
  225. opacity:1;
  226. -webkit-filter:none;
  227. -webkit-transition: all 0.6s ease-in-out;
  228. -webkit-transition: all 0.6s ease-in-out;
  229. -moz-transition: all 0.6s ease-in-out;
  230. -o-transition: all 0.6s ease-in-out;
  231. -ms-transition: all 0.6s ease-in-out;
  232. transition: all 0.6s ease-in-out;
  233. }
  234.  
  235. #container {
  236. margin: auto;
  237. position:fixed;
  238. width: 900px;
  239. }
  240.  
  241. #entries {
  242. padding:10px;
  243. left:480px;
  244. top:80px;
  245. position:fixed;
  246. background-color:transparent;
  247. width:410px;
  248. height:300px;
  249. top:260px;
  250. padding: 20px;
  251. overflow-x:scroll;
  252. scroll:left;
  253. overflow-x:hidden;
  254. }
  255.  
  256.  
  257. #theme {
  258. width:400px;
  259. margin:0 auto -12px auto;
  260. }
  261.  
  262. #sidebar {
  263. color:{color:text};
  264. width:100px;
  265. height:auto;
  266. margin-top:90px;
  267. margin-left:165px;
  268. text-align:left;
  269. }
  270.  
  271. #sidebarimage img {
  272. width:100px;
  273. opacity:.9;
  274. margin-top:-10px;
  275. margin-bottom:0px;
  276. margin-left:43px;
  277. }
  278.  
  279. #links {
  280. font-family:'Iskoola Pota';
  281. width:220px;
  282. margin-top:120px;
  283. margin-left:-600px;
  284. font-size:20px;
  285. text-transform:uppercase;
  286. text-align:center;
  287. line-height:280%;
  288. }
  289.  
  290. #links a{
  291. line-height:280%;
  292. border-bottom:0px solid #fff;
  293. margin-top:4px;
  294. margin-left:13px;
  295. color: #bcbcbc;
  296. text-shadow:1px 1px 15px #ffffff;
  297. -moz-transition-duration:.2s;
  298. -webkit-transition-duration:.2s;
  299. -o-transition-duration:.2s;
  300. }
  301.  
  302. #links a:hover {
  303. color: {color:link hover};
  304. width:60px;
  305. -moz-transition-duration:0.2s;
  306. -webkit-transition-duration:0.2s;
  307. -o-transition-duration:0.2s;
  308. }
  309.  
  310. #description {
  311. width:300px;
  312. font-family:times;
  313. margin-top:-2px;
  314. margin-left:-58px;
  315. text-align:center;
  316. font-size:9px;
  317. color: {color:text};
  318. letter-spacing:0px;
  319. line-height:170%;
  320. -moz-transition-duration:1s;
  321. -webkit-transition-duration:1s;
  322. -o-transition-duration:1s;
  323. }
  324.  
  325. #description a {
  326. color:{color:link};
  327. }
  328.  
  329. #description a:hover {
  330. color:{color:link hover};
  331. }
  332.  
  333. .sidebartitle {
  334. width:300px;
  335. text-align:center;
  336. font-family:'californian fb';
  337. line-height:120%;
  338. margin-left:-58px;
  339. word-spacing:2px;
  340. font-style:italic;
  341. font-size:16px;
  342. margin-top:10px;
  343. color:{color:title};
  344. }
  345.  
  346. #pagination {
  347. font-family:corbel;
  348. width:400px;
  349. font-size:9px;
  350. margin-top:25px;
  351. margin-left:-8px;
  352. padding-left:5px;
  353. letter-spacing:1px;
  354. text-align:center;
  355. text-transform:uppercase;
  356. }
  357.  
  358. #pagination a {
  359. color:{color:link};
  360. }
  361.  
  362. #info {
  363. font-family:times;
  364. width:400px;
  365. margin-top:8px;
  366. padding-top:4px;
  367. font-size:7px;
  368. border-top:1px solid #ddd;
  369. opacity:0;
  370. color:{color:text};
  371. text-transform:uppercase;
  372. font-style:normal;
  373. text-align:left;
  374. -moz-transition-duration:0.5s;
  375. -webkit-transition-duration:0.5s;
  376. -o-transition-duration:0.5s;
  377. }
  378.  
  379. #info a {
  380. color:{color:link};
  381. }
  382.  
  383. #info a:hover {
  384. color:{color:link hover};
  385. }
  386.  
  387. .tags {
  388. font-family:times;
  389. font-style:normal;
  390. width:400px;
  391. margin-top:4px;
  392. text-transform:normal;
  393. font-style:normal;
  394. line-height:120%;
  395. padding-top:0px;
  396. font-size:8px;
  397. opacity:0;
  398. letter-spacing:1px;
  399. text-align:left;
  400. -moz-transition-duration:0.5s;
  401. -webkit-transition-duration:0.5s;
  402. -o-transition-duration:0.5s;
  403. }
  404. .tags a{
  405. color:{color:link};
  406. -moz-transition-duration:0.2s;
  407. -webkit-transition-duration:0.2s;
  408. -o-transition-duration:0.2s;
  409. }
  410. .tags a:hover{
  411. color:{color:link hover};
  412. -moz-transition-duration:0.2s;
  413. -webkit-transition-duration:0.2s;
  414. -o-transition-duration:0.2s;
  415. }
  416.  
  417. #post:hover #info{
  418. opacity:1;
  419. -moz-transition-duration:1s;
  420. -webkit-transition-duration:1s;
  421. -o-transition-duration:1s;
  422. }
  423. #post:hover .tags{
  424. opacity:1;
  425. -moz-transition-duration:1s;
  426. -webkit-transition-duration:1s;
  427. -o-transition-duration:1s;
  428. }
  429.  
  430. .audio{
  431. background-color:#181818;
  432. height:65px;
  433. overflow:hidden;
  434. }
  435.  
  436. #ask {
  437. float:left;
  438. color:{color:text};
  439. }
  440.  
  441. #credit {
  442. font-size:9px;
  443. font-family:cambria;
  444. font-style:italic;
  445. letter-spacing:1px;
  446. -moz-transition-duration:0.5s;
  447. -webkit-transition-duration:0.5s;
  448. -o-transition-duration:0.5s;
  449. }
  450.  
  451. #credit a {
  452. background-color:#fff;
  453. padding:5px;
  454. border:1px solid #e9e9e9;
  455. position:fixed;
  456. right:15px;
  457. bottom:10px
  458. }
  459.  
  460. #credit a:hover {
  461. color:#fff;
  462. background-color:#191919;
  463. }
  464.  
  465. #post img{
  466.  
  467. opacity:0.8;
  468.  
  469. -webkit-transition: all 0.6s ease-in-out;
  470.  
  471. -moz-transition: all 0.6s ease-in-out;
  472.  
  473. -o-transition: all 0.6s ease-in-out;
  474.  
  475. -ms-transition: all 0.6s ease-in-out;
  476.  
  477. transition: all 0.6s ease-in-out;
  478.  
  479. }
  480.  
  481. #post img:hover{
  482.  
  483. opacity:1;
  484.  
  485. -webkit-transition: all 0.6s ease-in-out;
  486.  
  487. -moz-transition: all 0.6s ease-in-out;
  488.  
  489. -o-transition: all 0.6s ease-in-out;
  490.  
  491. -ms-transition: all 0.6s ease-in-out;
  492.  
  493. transition: all 0.6s ease-in-out;
  494.  
  495. }
  496.  
  497. /************** FLAGS UPDATES TAB **************/
  498. /* tutorial by deanlirium|tumblr (clarence.tk) */
  499.  
  500. #flags {
  501. position:fixed;
  502. top:100px; /* distance from the top of the page - adjust as you wish! */
  503. left:-10px;
  504. text-align:center;
  505. text-transform:uppercase; /* the text is in all caps - delete this line and it won't be */
  506. color:#8C8C8C; /* change text color: use sites like http://www.colorpicker.com/ or the tumblr thing, copy the code it gives you and paste it! remember the #! */
  507. font-size:8px; /* adjust font size */
  508. letter-spacing:1px;
  509. z-index:2147483607;
  510. font-family:calibri;}
  511.  
  512.  
  513. #flag1 {
  514. border:solid 6px #4A4A4A; /* flag color */
  515. border-right:solid 6px transparent; /* IMPORTANT! -- to make the flag thicker increase the border and border-right value; it looks better if they both have the same number! */
  516. padding-left:10px;
  517. width:20px; /* increase or decrease to change the lenght of the CLOSED flag */
  518. height:0px;
  519. position:absolute;
  520. -moz-transition:all 0.7s ease-out;
  521. -webkit-transition:all 0.7s ease-out;
  522. -o-transition:all 0.7s ease-out;}
  523.  
  524. #flag1:hover {
  525. width:180px;} /* lenght of the OPEN flag */
  526.  
  527. #upd1 {
  528. position:absolute;
  529. width:110px;
  530. padding:10px;
  531. padding-left:60px; /* adjust this if you've changed the length of the open flag, subtract what you add here to the 'left' value below */
  532. left:-180px;
  533. margin-top:6px; /* keep this number equal to the 'border' value for the flag */
  534. opacity:0;
  535. -moz-transition:all 0.7s ease-out;
  536. -webkit-transition:all 0.7s ease-out;
  537. -o-transition:all 0.7s ease-out;}
  538.  
  539. #flag1:hover #upd1{
  540. left:0px;
  541. opacity:1;}
  542.  
  543. /* following is the coding for the other flags - same as above! */
  544.  
  545. #flag2 {
  546. border:solid 6px #8C8C8C;
  547. margin-top:20px;
  548. position:absolute;
  549. border-right:solid 6px transparent;
  550. padding-left:10px;
  551. width:20px;
  552. height:0px;
  553. -moz-transition:all 0.7s ease-out;
  554. -webkit-transition:all 0.7s ease-out;
  555. -o-transition:all 0.7s ease-out;}
  556.  
  557. #flag2:hover {
  558. width:180px;}
  559.  
  560. #upd2 {
  561. position:absolute;
  562. width:110px;
  563. padding:10px;
  564. padding-left:60px;
  565. left:-180px;
  566. margin-top:6px;
  567. opacity:0;
  568. -moz-transition:all 0.7s ease-out;
  569. -webkit-transition:all 0.7s ease-out;
  570. -o-transition:all 0.7s ease-out;}
  571.  
  572. #flag2:hover #upd2{
  573. left:0px;
  574. opacity:1;}
  575.  
  576. /*if you want more flags, just copy the part of the code below and change the numbers - then increase the margin-top value for the #flag(number) adding 20px each new flag! copy from here: */
  577.  
  578. #flag3 {
  579. border:solid 6px #B3B3B3;
  580. position:absolute;
  581. margin-top:40px; /* this one! */
  582. border-right:solid 6px transparent;
  583. padding-left:10px;
  584. width:20px;
  585. height:0px;
  586. -moz-transition:all 0.7s ease-out;
  587. -webkit-transition:all 0.7s ease-out;
  588. -o-transition:all 0.7s ease-out;}
  589.  
  590. #flag3:hover {
  591. width:180px;}
  592.  
  593. #upd3 {
  594. position:absolute;
  595. width:110px;
  596. padding:10px;
  597. padding-left:60px;
  598. left:-180px;
  599. margin-top:6px;
  600. opacity:0;
  601. -moz-transition:all 0.7s ease-out;
  602. -webkit-transition:all 0.7s ease-out;
  603. -o-transition:all 0.7s ease-out;}
  604.  
  605. #flag3:hover #upd3{
  606. left:0px;
  607. opacity:1;}
  608.  
  609. /* to here */
  610.  
  611. {CustomCSS}</style></head><body>
  612.  
  613. <div id="flags">
  614. <div id="flag1"><div id="upd1">
  615.  
  616. write here for the first flag
  617.  
  618. </div></div>
  619.  
  620. <div id="flag2"><div id="upd2">
  621.  
  622. here for the second flag
  623.  
  624. </div></div>
  625.  
  626. <!---- if you want more flags, copy from here ---->
  627.  
  628. <div id="flag3"><div id="upd3">
  629.  
  630. theme made by <a href="http://upprivet.tumblr.com/"><em>upprivet</em></a>.
  631.  
  632. </div></div>
  633.  
  634. <!---- to here and change the numbers according to your css! ---->
  635.  
  636. <!---- thanks for passing by and using this tutorial you're raaaaaaaaad c: ---->
  637.  
  638. </div>
  639.  
  640. <div id="theme">
  641.  
  642. <div id=“container”>
  643.  
  644. <div id="sidebar">
  645.  
  646. <div id="sidebarimage">
  647. <a href="/"><img src="{image:sidebar}"></a></div>
  648.  
  649. <div class="sidebartitle">{text:sidebartitle}</div>
  650.  
  651. <div id="links">
  652. <a href="{text:link1 url}" title="{text:link1}">●</a><br>
  653. <a href="#?w=400" rel="box1" class="poplight" a title="ask.">●</a><br>
  654. <a href="#?w=400" rel="box2" class="poplight" a title="rules.">●</a><br>
  655. <a href="#?w=400" rel="box3" class="poplight" a title="about.">●</a><br>
  656. <a href="#?w=400" rel="box4" class="poplight" a title="verses.">●</a><br>
  657. </a>
  658.  
  659. </div>
  660.  
  661. <div id="description">{description}</div>
  662.  
  663. </div>
  664.  
  665. <div id="entries">{block:Posts}<div id="post">
  666.  
  667. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  668.  
  669. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  670.  
  671. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  672.  
  673. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  674.  
  675. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  676.  
  677. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  678.  
  679. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  680. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  681.  
  682. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  683.  
  684. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  685.  
  686. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  687. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#d588a6>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  688.  
  689. {block:RebloggedFrom}&nbsp; <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; <a href="{ReblogURL}"target="_blank" title="reblog this post"><big>+</big> </a>
  690. </div>
  691.  
  692.  
  693. {block:HasTags}
  694. <div class="tags">
  695. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  696. {/block:HasTags}
  697. <div class="postnote">
  698. {block:PostNotes}{PostNotes}{/block:PostNotes}
  699. </div>
  700. </div>
  701. {/block:Posts}
  702.  
  703. <div id="pagination">
  704. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←&nbsp;&nbsp;&nbsp; future</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">past&nbsp;&nbsp;&nbsp; →</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  705.  
  706. </div>
  707. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div> </div>
  708.  
  709. </body>
  710.  
  711. <div id="box1" class="popup_block">
  712. <h2>questions.</h2><iframe frameborder="0" height="300" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/bestboxman.tumblr.com" width="100%"></iframe>
  713. </div>
  714.  
  715. <div id="box2" class="popup_block">
  716. <center>CONTENT</center>
  717. </div>
  718.  
  719. <div id="box3" class="popup_block">
  720. <center>CONTENT</center>
  721. </div>
  722.  
  723. <div id="box4" class="popup_block">
  724. <center>CONTENT</center>
  725. </div>
  726.  
  727. </div></div></div></div></div></div></div></div></div></div>
  728.  
  729. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement