adjusting table size

Poda

Senior member
May 7, 2004
404
0
76
duke3donline.com
Hi. I don't understand how forums keep the table to match the screen resolution and also seem to have indention around them. As a test, I copied the exact table code for a forum table and pasted it right above it in the header. You will see at http://uschampionshipvball.com/vball/vBulletin that my pasted table above is larger than the one below, yet the code is the same. I don't get where the forum is squishing the tables a bit into the page. Any ideas?
 

Snapster

Diamond Member
Oct 14, 2001
3,916
0
0
No replies as yet, possibly as your question isn't the clearest to understand. If what I think you are asking is why forum table within that page has space around the edge, no matter what size the browser, whilst other content does not. The reason the forum table is within a few div containers which provide some padding from the edge (25px right and left side):

<div align="center">
<div class="page" style="width:100%; text-align:left">
<div style="padding:0px 25px 0px 25px">

// forum table here

</div>
</div>
</div>

Either change the padding to 0px if you want full width, or place your extra content within the same container so it's all lined up.
 

Poda

Senior member
May 7, 2004
404
0
76
duke3donline.com
Hi, yeah I tried to duplicate those 3 lines, but it wouldn't work. Now I see I have to put the </div> things too. It works now. Thanks.