Share Pastebin
Guest
Public paste!

fosk

By: a guest | Apr 11th, 2008 | Syntax: None | Size: 0.73 KB | Hits: 2,149 | Expires: Never
Copy text to clipboard
  1. /* PASTE THESE LINES IN THE CSS SECTION OF YOUR THEME */
  2. .shuffle {
  3.     position: fixed;
  4.     top: 3px;
  5.     left: 3px;
  6.     margin: 0;
  7.     padding: 0;
  8.     _position: static;
  9.     _margin: 3px;
  10.     _text-align: right;
  11.     z-index: 1;
  12. }
  13. .shuffle a img {
  14.     border: 0;
  15. }
  16.  
  17.  
  18.  
  19. <!-- PASTE THESE LINES SOMEWHERE IN THE BODY HTML -->
  20.  
  21. <script type="text/javascript">
  22. function shuffle() {
  23.   var s1='<p class="shuffle"><a href="http://YOUR-TUMBLR-NAME.tumblr.com/';
  24.   var s2='</a></p>';
  25.   Total=0+64;
  26.   if(Total>0) {
  27.       var r=Math.ceil(Math.random() * Total);
  28.       document.write(s1+'page/'+r+'">'+'<img src="http://data.tumblr.com/OY9NpboAI1s7qus3Dvw52nRC_500.png" width="70" height="20">'+s2);
  29.   }
  30. }
  31. shuffle();
  32. </script>