Hi,
You FORUM theme seems modified a bit. Especially, the way that is wrapped to a kind of fixed width is very nice. How you made it?
Thank you.
Jimmy
How you do the page wrap?
Re: How you do the page wrap?
If look at the code you notice that all page content is wrapped inside div called #pagewrapper. This one has min-width and max-width in css. That is controlling the page width. For IE6 there probaby some js to da same thing.
-
wjhsmf
Re: How you do the page wrap?
Thanks KO.
Do you mean all is done by this?
Jimmy
Do you mean all is done by this?
Code: Select all
<!--[if lte IE 6]>
<style type="text/css">
#pagewrapper {width:expression(P7_MinMaxW(720,950));}
#container {height: 1%;}
</style>
<![endif]-->
Re: How you do the page wrap?
The code you posted is for IE as it doesn't understand min/max width set in CSS...
div#pagewrapper {
margin: 0 auto;
max-width: 80em;
min-width: 63em;
padding: 1px;
text-align: left;
}
div#pagewrapper {
margin: 0 auto;
max-width: 80em;
min-width: 63em;
padding: 1px;
text-align: left;
}
Re: How you do the page wrap?
Yeah.. that's how it goes.


