Board Width

English Style Support
Post Reply
PZRoses
Mitglied / Member
Mitglied / Member
Posts: 8
Joined: Thu 6. Jan 2011, 01:35

Board Width

Post by PZRoses »

I know you covered this here http://www.m-a-styles.de/viewtopic.php?f=5&t=9#p14 but that hasn't helped. I can't find the middle code

.outside {
margin: 0 auto;
width : 950px;
}

In either colors or common.css.

I love the style but I have ads with a max width of 825 and I need to make sure the board never shrinks smaller than that or else the ads "float". Ideally a minimum width of say 900 or so would probably be best.

I just downloaded the style today so I assume I have the latest version.

Thank you in advance for any help.
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: Board Width

Post by Marc »

http://www.m-a-styles.de/viewtopic.php?f=10&t=169#p746

Add after that line:

Code: Select all

   min-width: 900px;
Image
PZRoses
Mitglied / Member
Mitglied / Member
Posts: 8
Joined: Thu 6. Jan 2011, 01:35

Re: Board Width

Post by PZRoses »

Thank you for the quick response

That didn't solve the issue.

Here is what is now in my colors CSS

#box {
position: relative;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
padding: 0;
text-align: left;
width:95%;
max-width: 900px; * <-- use this to tie width to viewport size */
}

Here is the wrap value on common.css as per the thread you referred me to.

/* Main blocks
---------------------------------------- */
#wrap {
padding: 0 10px;
width: auto;
margin: 0 auto;
min-width: 600px;
}

I did play with that a bit but I think I have it back to the original state.

Thanks
Paul

I tried
PZRoses
Mitglied / Member
Mitglied / Member
Posts: 8
Joined: Thu 6. Jan 2011, 01:35

Re: Board Width

Post by PZRoses »

PS

Just to make sure I hadn't changed anything else I re-uploaded your original colors.css and common.css.

At the bottom of colors.css I found this;

#box {
position: relative;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
padding: 0;
text-align: left;
width:95%;
min-width: 600px;/ * <-- use this to tie width to viewport size */
max-width: 1450px
}

I changed it to this

#box {
position: relative;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
padding: 0;
text-align: left;
width:95%;
min-width: 900px;
max-width: 1450px;
}

Still hasn't resolved the issue.

Thanks
Paul
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: Board Width

Post by Marc »

Of course it should be min-width and not max-width.

Did you refresh the theme cache of proFormell?
Image
PZRoses
Mitglied / Member
Mitglied / Member
Posts: 8
Joined: Thu 6. Jan 2011, 01:35

Re: Board Width

Post by PZRoses »

Yes, I refreshed the cache and even the one under the general tab for the entire forum. Still not resolving the issue.

Here is what I'm seeing. Try shrinking your browser and you'll see what happens. This is in preview mode.

http://208.43.34.230/~paulzimm/forum/in ... 7619abfd27
PZRoses
Mitglied / Member
Mitglied / Member
Posts: 8
Joined: Thu 6. Jan 2011, 01:35

Re: Board Width

Post by PZRoses »

Now I feel like a fool. It seems to have suddenly taken to the new settings. Does it take time for the new settings to take hold after I refresh the cache?

I'm still a bit new to this and thank you in advance for your patience.
Post Reply