Using IE7 on Win XP Pro SP3 here. I've noticed that most of the PM tabs I open never stop loading -- there's always one more item remaining according to the status bar. It seems like it may be tied to the amount of data being displayed, as e.g. replying to a node, looking at my settings, etc. do not exhibit this behavior. But long threads, Newest Nodes, The Monastery Gate, SoPW, etc. almost always do. So I was wondering if anyone else has seen something similar? One theory is is could be my JavaScript and CSS settings (listed below wrapped in a readmore tag). Another theory is it has something to do with the ISA servers (Microsoft's Firewall and Proxy server product) or the Firewall Client we are using here. Anyway, I thought I would ask as I am really getting tired of that Vista-like spinning circular busy indicator (though I suppose an hourglass really would look worse, still....). Thanks in advance!
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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.