Status
Not open for further replies.

MrOSX

Active Member
1,070
2011
414
680
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.
Back
Top