• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

adjusting table size

Poda

Senior member
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?
 
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.
 
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.
 
Back
Top