|
Post by Dragon on Dec 28, 2011 21:28:43 GMT -8
Just above the board parts.
|
|
|
Post by Wormopolis on Dec 28, 2011 22:09:47 GMT -8
so you are basically going to have to do regular side tables, but just in the main header/footer. at the bottom of main header put
<table width="900px"><tr><td width="700px">
and at the top of main footer put
</td><td> <table>
<tr><td> side table 1 content </td></tr> <tr><td> side table 2 content </td></tr>
</table> </td></tr></table>
I realize you are about to say you dont want it on any page other then main, we will deal with that later. lets just get the tables laid out the way you want them on the main page.
|
|
|
Post by Dragon on Dec 29, 2011 11:09:03 GMT -8
|
|
|
Post by Wormopolis on Dec 29, 2011 15:42:50 GMT -8
should the info center and login table be beside the side tables or under them?
|
|
|
Post by Dragon on Dec 29, 2011 19:33:14 GMT -8
under.... I shwoed you in that pic how I wanted it, I dont want the tables jutting out like normal tables I want them to use up the space given by the remodel code, which currently its not.
|
|
|
Post by Wormopolis on Dec 29, 2011 20:43:04 GMT -8
this isnt going to all be done in one shot.
put this directly below tabbed forum code
<script type="text/javascript"> <!-- // move everything after forum outside
var outside=forumTable.parentNode.parentNode.parentNode.parentNode; while (forumTable.nextSibling) { outside.parentNode.insertBefore(forumTable.nextSibling, outside.nextSibling); }
//--> </script>
|
|
|
Post by Dragon on Dec 30, 2011 9:31:13 GMT -8
O.O Put in.....
|
|
|
Post by Wormopolis on Dec 31, 2011 2:06:45 GMT -8
it didnt like the parent search... hold on. gonna have to make an adjustment to the side tables...
|
|
|
Post by Wormopolis on Dec 31, 2011 14:21:04 GMT -8
add an id to that outer table that was added
<table width="900px" id="outertable"><tr><td width="700px">
then change the script
<script type="text/javascript"> <!-- // move everything after forum outside
var outside=document.getElementById('outertable'); while (forumTable.nextSibling) { outside.parentNode.insertBefore(forumTable.nextSibling, outside.nextSibling); }
//--> </script>
|
|
|
Post by Dragon on Dec 31, 2011 15:34:09 GMT -8
Its centered now. Though the info center got really screwed up from it ? O.O I think thats the position we want the table to be in more or less. Now we just need to get the main table working right. I have it set at 700px, but as you can see its still stretching trying to get to 900.... Is there a way to get it to accept the 700 and stop stretching? I had hoped the 200px from the table would push the table over and stop it stretching by itself but the looks of things thats not happening. Also happy early new years
|
|
|
Post by Wormopolis on Dec 31, 2011 17:12:57 GMT -8
remove this for now:
<script type="text/javascript"> <!-- var fWidth = '700';
var table = document.getElementsByTagName('table'); for(t=0; t<table.length; t++) { if(table.item(t).width == "92%") { table.item(t).width = fWidth; } } // -->
</script>
and the other problem is your head base images are 900px. so even when in the side tables, that main forum cell, that you want to be 700 px, is getting stretched to 900px because of them. what does it look like if you temp disable the head base images?
|
|
|
Post by Dragon on Jan 1, 2012 1:15:21 GMT -8
If I remove the the head/base image and the navbar completely then theres nothing physically stopping the resize.... that is if we meant setting the forum customize code down from 900px which I did earlier. The remodel code still wouldnt work the way we want to resize without those images. Personally those images at 900 should not have any effect on the remodel code setting the table to700px and failing. With or without the images its still failing to resize and restretches. Now if we use the basicforum resize..... that works but its drastic for obvious reasons in global footer.
I forgot to take that resize code out earlier, was experimenting trying to get the resize to work.
|
|
|
Post by Wormopolis on Jan 1, 2012 1:32:01 GMT -8
if the images themselves are 900 px wide then they will force that table to be 900px because the DIVs are IN the table.
|
|
|
Post by Dragon on Jan 1, 2012 11:32:22 GMT -8
The images are not IN the table though. If I take them out the only good it will do is if we change the forum resize code from 900px to 700, the remodel code will NOT change anything.
|
|
|
Post by Dragon on Jan 1, 2012 11:41:55 GMT -8
If Im not mistaken the remodel code is set to work within the parameters within which the forum customize code gave it. As its set to 900px the table must be within 900px otherwise it stretches, therefore the remodel code doesnt let us change the size of the table but allows us to manage how much each part of the table is used by what part.
So is there a way to set the parameters for the board area table to lower than the forum resize code? Without having to resize everything else.....
|
|