Move Left Modules to the Right


/ Published in: JavaScript
Save to your folder(s)

Moves left modules (subscriptions, blogrings, etc.) to the right of the main blog. Paste in webstats.


Copy this code and paste it in your HTML
  1. <!-- start code provided by createblog.com -->
  2. <script language="Javascript">
  3. // original by sean http://www.xanga.com/seanmeister
  4. var tds = document.getElementsByTagName("td");
  5. for (var i = 0; i < tds.length; i++){
  6. if (tds[i].width == "200"){
  7. tds[i].parentNode.appendChild(tds[i].cloneNode(true));
  8. tds[i].parentNode.removeChild(tds[i]);
  9. break;
  10. }}
  11. </script>
  12. <!-- end code provided by createblog.com -->

URL: http://www.createblog.com/scripts/download.php?id=182

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.