|
Post by tunescool on Jun 30, 2010 3:54:58 GMT -8
they load all weird can you help this. its just while the page loads it actually ends up like its supposed to. but the calender page does end up like that
|
|
|
Post by Wormopolis on Jul 1, 2010 23:43:26 GMT -8
your wording is confusing.. while loading they appear correctly, but when the page is done they are wrong?
|
|
|
Post by tunescool on Jul 2, 2010 0:17:36 GMT -8
its just while the page loads, it actually ends up like its supposed to. i should have used a comma. it does it while it loads, then its fine after it loads
|
|
|
Post by Wormopolis on Jul 2, 2010 20:23:12 GMT -8
yeah not much that can be done about that Im afraid. It comes out of the PB factory in its default state and the code runs when it gets to it. moving codes up higher in the footer will get it done faster, but in your case that can be dangerous since so many codes are connected. you move 1 code and it seems to kill 5 others because they are looking for it to be a certain way.
if you have any externally hosted scripts, that can cause a delay in loading a page as well (like the facebook code does on here), but that is the price that is paid when it has to go back out on the net and retrieve information from a possibly busy server before it can finish.
|
|
|
Post by tunescool on Jul 2, 2010 21:22:43 GMT -8
thinking about it now it has to have something to do with move modify, quote, and delete. maybe in relation to the code you made that changes that area up there? ill move a couple things around
|
|
|
Post by tunescool on Jul 3, 2010 12:24:37 GMT -8
the first thing i took out the calender went back to normal and i couldnt get it to do it on the thread page after i loaded it a couple times. but it did do it on the thread page with it in. the only other thing i could think of was to move it after "move quote modify and delete" since thats what moves them around anyway but it still happens. it does it while in new posts after expanding too.
and since im rite here, can you just change the line in your code that changes recent posts to recent topics. which will expand the whole topic wont it? ive seen eton explain it and in another thread but i obviously wasnt changing the rite part of the code
<script type="text/javascript"> // Post Title Cell Expand for (tds=document.getElementsByTagName('td'), t=0; t<tds.length; t++) { if (tds[t].width=='55%' && tds[t].vAlign=='middle' && tds[t].align=='left') { if (tds[t].nextSibling.width=='40%') { tds[t].width='90%'; tds[t].nextSibling.width='5%'; //these 2 must add to 95% } } } </script>
|
|
|
Post by Wormopolis on Jul 3, 2010 15:12:36 GMT -8
that little code was to make the cell with post titles above each post longer.
|
|
|
Post by tunescool on Jul 3, 2010 16:01:14 GMT -8
i know id like to keep it solve this problem
|
|
|
Post by Wormopolis on Jul 5, 2010 2:07:02 GMT -8
I dont see what that code has to do with anything though. You brought something into the equation that doesnt make sense.
|
|
|
Post by tunescool on Jul 5, 2010 3:13:10 GMT -8
well if it doesnt do it without the code then theres a problem somewhere. sorry about that last post i mistyped i wasnt ordering you around
|
|