Skip to content
WJunction - Webmaster Forum

Table Width Problem (Postbit Only)

Status
Not open for further replies.
Hello I seem to be getting an issue were my inside table is wider than my full forum margin.

2d2c1hs.jpg


Can anyone help me out?

thanks,
Adam
 

10 comments

Hey
did u use width in numbers or in percentage?

quick suggestions:

- try using width property in %
- try using CSS Property overflow:hidden;

A link to the screenshot above would help.
 
Find:
Code:
.warning-box
Change:
Code:
.warning-box {
background-color: #FFCCCC;
}
To:
Code:
.warning-box {
background-color: #FFCCCC;
max-width: 755px;
}

That should fix it. Post back your results.
 
Last edited:
Change your page class div style
with current style
<div class="page" style=width:1000; text-align:left>
sw9jw4i.png


update it to:
<div class="page" style=width:960; text-align:left>

result will be like

YX6hE2l.png
 
Last edited:
Were do I edit that? I did it in the main theme settings here:

Main Table Width (pixels or percentage)

And it just made the whole site thinner?
 
no it will not make your site thinner,
In CSS, find the class Page
it will be something like this

.page
{
width : 1000px;
}
change it to
.page
{
width : 960px;
}

as per my knowledge, if you edit this property in main CSS every thing should work fine
 
Status
Not open for further replies.

About the author

MrOSX
Active Member · Joined
1,070
Messages
414
Reactions
83
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom