SOLVED: As tye indicates in Re: Forever Loading (Community Ads), removing the Community Ads nodelet solved the problem. You can remove it in your Nodelet Settings.
Display Settings:
/* Not sure why I added this. */ .code { overflow: auto; } /* Ignore these users */ tr.pmnote-xxxxxx { display: none; } /* xxx */ tr.pmnote-xxxxxx { display: none; } /* xxx */ tr.pmnote-xxxxxx { display: none; } /* xxx */ tr.pmnote-xxxxxx { display: none; } /* xxx */ /* Increase size of text input areas. */ textarea { width: 100%; height: 25em; } table.user-settings, .user-settings textarea { width: 100%; } /* Ignore xxxx that works with Firefox */ /* tr.pmnote-xxxxxx td.reply-body:first-child:before { content: string("I +gnoring Cop"); } tr.pmnote-xxxxx td.reply-body * { display: none !important; } */
And for my freenodelet:
<script type="text/javascript"> // Move nodelets to the left side. function move_nodelets_to_left() { var td = document.getElementById('nodelet_container').parentNode; var tr = td.parentNode; tr.insertBefore(td, tr.firstChild); } // Execute our snippets after the page is parsed. var old_onload = window.onload; window.onload = function() { if (old_onload != null) old_onload(); move_nodelets_to_left(); // Add other free nodelet functions here. }; </script> !-- TABLE FOLLOWS -->
Elda Taluta; Sarks Sark; Ark Arks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Forever Loading (Community Ads)
by tye (Sage) on Jan 15, 2010 at 07:08 UTC | |
by Argel (Prior) on Jan 15, 2010 at 20:13 UTC |