Advertisement
Guest User

SEPTEMPURR.tumblr.com

a guest
Apr 20th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.36 KB | None | 0 0
  1. <!--
  2. LE1F theme by cross-bone
  3. please don't remove the credit
  4. -->
  5. <head>
  6. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  7. <script type="text/javascript">//** jQuery Scroll to Top Control script- (c) I made this script myself (Kyle Monk) and it is hosted on my personal site so would appreciate if you followed my blog at kylemonk.tumblr.com if you use it or for details on how to change the location.
  8. //** Graphic originally from tumbler dashboard, for details on how to change graphic colour, contact me at kylemonk.tumblr.com
  9. //** v1.1 (April 7th, 10'):
  10. //** 1) Adds ability to scroll to an absolute position (from top of page) or specific element on the page instead.
  11. //** 2) Fixes scroll animation not working in Opera.
  12.  
  13.  
  14. var scrolltotop={
  15. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  16. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  17. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  18. controlHTML: '<img height="90" src="http://media.tumblr.com/tumblr_lr63ecXzml1r08igq.gif" width="90">', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  19. controlattrs: {offsetx:35, offsety:60}, //offset of control relative to right/ bottom of window corner
  20. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  21.  
  22. state: {isvisible:false, shouldvisible:false},
  23.  
  24. scrollup:function(){
  25. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  26. this.$control.css({opacity:0}) //hide control immediately after clicking it
  27. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  28. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  29. dest=jQuery('#'+dest).offset().top
  30. else
  31. dest=0
  32. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  33. },
  34.  
  35. keepfixed:function(){
  36. var $window=jQuery(window)
  37. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  38. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  39. this.$control.css({left:controlx+'px', top:controly+'px'})
  40. },
  41.  
  42. togglecontrol:function(){
  43. var scrolltop=jQuery(window).scrollTop()
  44. if (!this.cssfixedsupport)
  45. this.keepfixed()
  46. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  47. if (this.state.shouldvisible && !this.state.isvisible){
  48. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  49. this.state.isvisible=true
  50. }
  51. else if (this.state.shouldvisible==false && this.state.isvisible){
  52. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  53. this.state.isvisible=false
  54. }
  55. },
  56.  
  57. init:function(){
  58. jQuery(document).ready(function($){
  59. var mainobj=scrolltotop
  60. var iebrws=document.all
  61. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  62. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  63. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  64. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  65. .attr({title:'back to top'})
  66. .click(function(){mainobj.scrollup(); return false})
  67. .appendTo('body')
  68. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  69. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  70. mainobj.togglecontrol()
  71. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  72. mainobj.scrollup()
  73. return false
  74. })
  75. $(window).bind('scroll resize', function(e){
  76. mainobj.togglecontrol()
  77. })
  78. })
  79. }
  80. }
  81.  
  82. scrolltotop.init()</script>
  83.  
  84.  
  85. <link rel="shortcut icon" href="{Favicon}" />
  86. <meta name="color:Background" content="#00ff9c"/>
  87. <meta name="color:Links" content="#000"/>
  88. <meta name="color:Scrollbar" content="#000"/>
  89. <meta name="color:Text" content="#000"/>
  90.  
  91. <meta name="image:Background" content=""/>
  92. <meta name="image:Banner" content=http://www.septempurr.tumblr.com""/>
  93. <meta name="if:Show Banner" content="0"/>
  94. <meta name="text:Banner Width" content=""/>
  95.  
  96. <meta name="text:Font Size" content="12"/>
  97.  
  98. <meta name="if:Show Title" content="1"/>
  99. <meta name="if:Show Links" content="1"/>
  100.  
  101. <meta name="if:Show Link One" content="1"/>
  102. <meta name="if:Show Link Two" content="1"/>
  103. <meta name="if:Show Link Three" content="1"/>
  104. <meta name="if:Show Link Four" content="1"/>
  105.  
  106. <meta name="text:Link One" content=""/>
  107. <meta name="text:Link One Title" content="Link One"/>
  108. <meta name="text:Link Two" content=""/>
  109. <meta name="text:Link Two Title" content="Link Two"/>
  110. <meta name="text:Link Three" content=""/>
  111. <meta name="text:Link Three Title" content="Link Three"/>
  112. <meta name="text:Link Four" content=""/>
  113. <meta name="text:Link Four Title" content="Link Four"/>
  114.  
  115. <style>
  116.  
  117. .notezetc {border:1px solid #d8d8d8;background:#fff;width:488px;padding:5px;}
  118. .posted {text-align:right;display:block;margin-top:5px;padding-bottom:10px;border-bottom:1px dashed #d8d8d8;}
  119. .notes {text-align:right;display:block;margin-top:10px;padding-bottom:10px;border-bottom:1px dashed #d8d8d8;}
  120. .reblog {text-align:right;display:block;margin-top:10px;padding-bottom:10px;border-bottom:1px dashed #d8d8d8;}
  121. .tags {text-align:right;display:block;margin-top:10px;padding-bottom:10px;border-bottom:1px dashed #d8d8d8;}
  122. .source {text-align:right;display:block;margin-top:10px;padding-bottom:10px;border-bottom:1px dashed #d8d8d8;}
  123. .notezz {display:inline-block !important;width:100% !important;height:200px;overflow:auto;}
  124.  
  125. body {background-image:url('{image:Background}');background-attachment:fixed;font-size:{text:Font Size}px;font-family:courier new;background-color:{color:Background};color:{color:Text};margin:0px !important;}
  126.  
  127. a:link, a:active, a:visited {text-decoration:underline;color:{color:Links};}
  128. a:hover {text-decoration:none !important;}
  129.  
  130. iframe#tumblr_controls {opacity:.6;margin-top:0px;position:fixed !important;}iframe#tumblr_controls:hover {opacity:1;}
  131.  
  132. ::-webkit-scrollbar {width:9px;height:6px;background:{color:background}}
  133. ::-webkit-scrollbar-thumb {border-radius:5px;border:2px solid {color:background};background:{color:Scrollbar};}
  134.  
  135. ::selection {background-color:#fafafa;}
  136.  
  137. #cent {margin-left:0px;top:0px;height:100%;position:relative;background:transparent;width:644px;margin:auto;{block:PermalinkPage}width:510px;{/block:PermalinkPage}}
  138.  
  139. .entry {width:250px;border:1px solid {color:Posts Shadow};margin:25px;padding:10px;background-color:#fff;text-align:justify;}
  140. .entry img {display:block;}
  141. .image img {{block:PermalinkPage}width:500px;{/block:PermalinkPage}}
  142. .p_title {border-bottom:1px solid #000;font-size:15px;font-family:consolas;text-transform:uppercase;letter-spacing:2px;display:block;text-align:center;text-decoration:none !important;}
  143.  
  144. .entry .shadow {z-index:-1;width:100%;height:100%;display:inline-block;position:absolute;left:-10px;top:8px;background-image:url('http://static.tumblr.com/rkiiohe/RJFmo1pz9/khul.png');border:1px solid #000;}
  145.  
  146. #top {width:644px;text-align:center;padding-top:25px;margin:auto;}
  147. .title {text-decoration:none !important;border-bottom:1px solid #000;font-size:15px;font-family:consolas;text-transform:uppercase;letter-spacing:2px;}
  148.  
  149. .links {margin-right:10px;margin-left:10px;text-decoration:underline !important;}.links:hover {text-decoration:none !important;}
  150. .title:hover {border-bottom:0px;text-decoration:none !important;}
  151.  
  152.  
  153. .ok{bottom:40px;right:10px;position:fixed;background-color:#d8d8d8;width:20px;height:20px;border:1px solid black;}
  154. .okay{bottom:70px;right:10px;position:fixed;background-color:#fff;width:20px;height:20px;border:1px solid black;}
  155. .okey{bottom:10px;right:10px;position:fixed;background-color:#D1FFAD;width:20px;height:20px;border:1px solid #000;}
  156.  
  157. .entry .perma {opacity:0;top:15px;position:absolute;left:-20px;background-color:#fff;padding:2px;border:1px solid #000;box-shadow:-1px 1px 0px #000,-2px 2px 0px #000;-webkit-transition: all .6s ease;-moz-transition: all .6s ease;-o-transition: all .6s ease;transition: all .6s ease;}
  158. .entry .permal{-webkit-transition: all 1.5s ease;-moz-transition: all 1.5s ease;-o-transition: all 1.5s ease;transition: all 1.5s ease;opacity:0;top:46px;position:absolute;left:-20px;background-color:#fff;padding:2px;border:1px solid #000;box-shadow:-1px 1px 0px #000,-2px 2px 0px #000;}.entry:hover .permal, .entry:hover .perma {opacity:1;}
  159.  
  160. </style>
  161.  
  162. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  163.  
  164. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  165.  
  166. <script>
  167. $(function(){
  168. var $container = $('#cent');
  169. $container.imagesLoaded(function(){
  170. $container.masonry({
  171. itemSelector: '.entry',
  172. });
  173. });
  174. $container.infinitescroll({
  175. itemSelector : ".entry",
  176. navSelector : "div.pagination",
  177. nextSelector : ".pagination a#next",
  178. loadingImg : "",
  179. loadingText : "<em></em>",
  180. bufferPx : 10000,
  181. extraScrollPx: 12000,
  182. },
  183. // trigger Masonry as a callback
  184. function( newElements ) {
  185. var $newElems = $( newElements ).css({ opacity: 0 });
  186. // ensure that images load before adding to masonry lay out
  187. $newElems.imagesLoaded(function(){
  188. $newElems.animate({ opacity: 1 });
  189. $container.masonry( 'appended', $newElems, true );
  190. });
  191. }
  192. );
  193. });
  194. </script>
  195. </head>
  196. <body>
  197. <div class="pagination">
  198. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"> </a> &middot;{/block:PreviousPage} {block:NextPage}<a href="{NextPage}" id="next"> </a>{/block:NextPage}{/block:Pagination}
  199. </div>
  200. <div class="navigation">
  201. {block:Pagination}
  202. {block:NextPage}<p id="page_nav"><a style="float:right" href="{NextPage}" id="next">&nbsp;</a>{/block:NextPage}
  203. {block:PreviousPage}<a style="float:left" href="{PreviousPage}">&nbsp;</a></p>{/block:PreviousPage}
  204. {/block:Pagination}
  205. </div>
  206.  
  207. <div id="top">
  208. {block:ifShowBanner}
  209. <img src="{image:Banner}" width="{text:Banner Width}">
  210. <br><br>
  211. {/block:ifShowBanner}
  212. {block:ifShowTitle}
  213. <a href="/" class="title">{Title}</a><br><br>
  214. {/block:ifShowTitle}
  215. {Description}
  216. {block:ifShowLinks}
  217. <br><br>
  218. {block:ifShowLinkOne}
  219. <a href="{text:Link One}" class="links">{text:Link One Title}</a>
  220. {/block:ifShowLinkOne}
  221.  
  222. {block:ifShowLinkTwo}
  223. <a href="{text:Link Two}" class="links">{text:Link Two Title}</a>
  224. {/block:ifShowLinkTwo}
  225.  
  226. {block:ifShowLinkThree}
  227. <a href="{text:Link Three}" class="links">{text:Link Three Title}</a>
  228. {/block:ifShowLinkThree}
  229.  
  230. {block:ifShowLinkFour}
  231. <a href="{text:Link Four}" class="links">{text:Link Four Title}</a>
  232. {/block:ifShowLinkFour}
  233. {/block:ifShowLinks}
  234. </div>
  235.  
  236. <div id="cent">
  237. {block:Posts}
  238. <div class="entry">
  239. <div class="shadow"></div>
  240. {block:Text}
  241. {block:Title}<a class="p_title" href="{Permalink}" >{Title}</a><br>{/block:Title}
  242. <span class="entrytext">{Body}</span><div align="right"></div></a>
  243.  
  244. <!--PERMALINK BEGINNING-->
  245. {block:PostNotes}
  246. {block:PermalinkPage}
  247. <div class="notezetc">
  248. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  249. <t class="notes">This post has {NoteCountWithLabel}</t>
  250. <t class="reblog"><a href="{ReblogURL}">Reblog this Post</a></t>
  251. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  252. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  253. <div class="notezz">
  254. {block:PostNotes}{PostNotes}
  255. {/block:PostNotes}
  256. </div>
  257. </div>
  258. {/block:PermalinkPage}
  259. {/block:PostNotes}
  260. <!--PERMALINK END-->
  261.  
  262. {/block:Text}
  263.  
  264. {block:Link}
  265. <a href="{URL}" class="p_title" >{Name}</a>
  266. {block:Description}{Description}{/block:Description}<div align="right"></div>
  267.  
  268. {block:Link}
  269. {block:Photo}
  270. {block:IndexPage}
  271.  
  272. <div class="perma">
  273. <a href="{ReblogURL}">reglog</a>
  274. </div>
  275. <div class="permal">
  276. <a href="{Permalink}">{NoteCount} notes</a>
  277. </div>
  278. {/block:IndexPage}
  279. <div class="photo">
  280. <div class="image">
  281. <img src="{PhotoURL-500}" style="border-radius:0px;"alt="{PhotoAlt}" width="100%" />
  282. </div></div>
  283. <!--PERMALINK BEGINNING-->
  284. {block:PostNotes}
  285. {block:PermalinkPage}
  286. <div class="notezetc">
  287. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  288. <t class="notes">This post has {NoteCountWithLabel}</t>
  289. <t class="reblogw"><a href="{ReblogURL}">Reblog this Post</a></t>
  290. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  291. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  292. <div class="notezz">
  293. {block:PostNotes}{PostNotes}
  294. {/block:PostNotes}
  295. </div>
  296. </div>
  297. {/block:PermalinkPage}
  298. {/block:PostNotes}
  299. <!--PERMALINK END-->
  300.  
  301. {/block:Photo}
  302.  
  303. {block:Photoset}<center>
  304. {block:IndexPage}
  305. {Photoset-250}
  306. {/block:IndexPage}
  307. {block:PermalinkPage}
  308. {Photoset-500}
  309. {/block:PermalinkPage}</center><div align="right"></div>
  310.  
  311. <!--PERMALINK BEGINNING-->
  312. {block:PostNotes}
  313. {block:PermalinkPage}
  314. <div class="notezetc">
  315. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  316. <t class="notes">This post has {NoteCountWithLabel}</t>
  317. <t class="reblogw"><a href="{ReblogURL}">Reblog this Post</a></t>
  318. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  319. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  320. <div class="notezz">
  321. {block:PostNotes}{PostNotes}
  322. {/block:PostNotes}
  323. </div>
  324. </div>
  325. {/block:PermalinkPage}
  326. {/block:PostNotes}
  327. <!--PERMALINK END-->
  328.  
  329. {/block:Photoset}
  330.  
  331. {block:Quote}
  332. "{Quote}"
  333. {block:Source}
  334. — {Source}
  335. {/block:Source}
  336. <br />
  337.  
  338. <!--PERMALINK BEGINNING-->
  339. {block:PostNotes}
  340. {block:PermalinkPage}
  341. <div class="notezetc">
  342. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  343. <t class="notes">This post has {NoteCountWithLabel}</t>
  344. <t class="reblogw"><a href="{ReblogURL}">Reblog this Post</a></t>
  345. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  346. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  347. <div class="notezz">
  348. {block:PostNotes}{PostNotes}
  349. {/block:PostNotes}
  350. </div>
  351. </div>
  352. {/block:PermalinkPage}
  353. {/block:PostNotes}
  354. <!--PERMALINK END-->
  355.  
  356. {/block:Quote}
  357.  
  358. {block:Chat}
  359. {block:Title}
  360. <a href="{Permalink}" class="p_title" >{Title}</a><br>
  361. {/block:Title}
  362. {block:Lines}
  363. {block:Label}
  364. {Label}
  365. {/block:Label}
  366. {Line}<br />
  367. {/block:Lines}
  368.  
  369. <!--PERMALINK BEGINNING-->
  370. {block:PostNotes}
  371. {block:PermalinkPage}
  372. <div class="notezetc">
  373. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  374. <t class="notes">This post has {NoteCountWithLabel}</t>
  375. <t class="reblogw"><a href="{ReblogURL}">Reblog this Post</a></t>
  376. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  377. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  378. <div class="notezz">
  379. {block:PostNotes}{PostNotes}
  380. {/block:PostNotes}
  381. </div>
  382. </div>
  383. {/block:PermalinkPage}
  384. {/block:PostNotes}
  385. <!--PERMALINK END-->
  386.  
  387. {/block:Chat}
  388.  
  389. {block:Audio}
  390. {AudioPlayerWhite}
  391. {block:Artist}
  392. {Artist}
  393. {/block:Artist}
  394. //
  395. {block:TrackName}
  396. {TrackName}
  397. {/block:TrackName}
  398. <!--PERMALINK BEGINNING-->
  399. {block:PostNotes}
  400. {block:PermalinkPage}
  401. <div class="notezetc">
  402. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  403. <t class="notes">This post has {NoteCountWithLabel}</t>
  404. <t class="reblogw"><a href="{ReblogURL}">Reblog this Post</a></t>
  405. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  406. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  407. <div class="notezz">
  408. {block:PostNotes}{PostNotes}
  409. {/block:PostNotes}
  410. </div>
  411. </div>
  412. {/block:PermalinkPage}
  413. {/block:PostNotes}
  414. <!--PERMALINK END-->
  415.  
  416. {/block:Audio}
  417.  
  418. {block:Video}<center>
  419. {block:IndexPage}
  420. {Video-250}
  421. {/block:IndexPage}
  422. {block:PermalinkPage}
  423. {Video-500}
  424. {/block:PermalinkPage}</center>
  425.  
  426. <!--PERMALINK BEGINNING-->
  427. {block:PostNotes}
  428. {block:PermalinkPage}
  429. <div class="notezetc">
  430. <t class="posted">Posted on {DayOfWeek}, {Month} {DayOfWeekNumber}</t>
  431. <t class="notes">This post has {NoteCountWithLabel}</t>
  432. <t class="reblogw"><a href="{ReblogURL}">Reblog this Post</a></t>
  433. {block:ContentSource}<t class="source"><a href="{SourceURL}">Source</a></t>{/block:ContentSource}
  434. {block:HasTags}<t class="tags">Tags: {block:Tags}<a href="{TagURL}">{Tag}&nbsp;&hearts;&nbsp;</a> {/block:Tags}</t>{/block:hasTags}
  435. <div class="notezz">
  436. {block:PostNotes}{PostNotes}
  437. {/block:PostNotes}
  438. </div>
  439. </div>
  440. {/block:PermalinkPage}
  441. {/block:PostNotes}
  442. <!--PERMALINK END-->
  443.  
  444. {/block:Video}
  445. </div>
  446. {block:ContentSource}
  447. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" /> {/block:SourceLogo} {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  448. {/block:ContentSource}
  449.  
  450. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  451. {/block:Posts}
  452.  
  453. </div></div>
  454. </div>
  455.  
  456. <a title="theme blog" href="http://c-bthemes.tumblr.com/">
  457. <div class="ok"></div>
  458. </a>
  459.  
  460. <a title="theme makers blog" href="http://cross-bone.tumblr.com/">
  461. <div class="okay"></div>
  462. </a>
  463.  
  464. <a title="this theme code" href="http://pastebin.com/raw.php?i=zqwSYpAd">
  465. <div class="okey"></div>
  466. </a>
  467. </body><style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/nature/nat-10/nat997.cur), progress !important;}</style><a href="http://www.cursors-4u.com/" target="_blank" title="Tiny Finger Point Hand With Heart"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Tiny Finger Point Hand With Heart" style="position:absolute; top: 0px; right: 0px;" /></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement