HI Kreiger,
Glad you found the layout useful and I like your layout 
Is there a way give your "Another 3 col" layout a, say, 10px margin all the way around (just to add whitespace)
I would think if you changes the bits of code below then you should get close to what you want.
Code:
body {
padding:0;
margin:0;
background:#FFFFFF url(images/ezoralbg.gif) repeat-y left top;
color: #000000;
border-left:10px solid white;
border-right:10px solid white;
}
#outer{
height:100%;
min-height:100%;
min-width:500px;
background:transparent url(images/ezorarbg.gif) repeat-y right top;
margin-bottom:-61px;
color: #000000;
}
#footer {
height:50px;
clear:both;
border-top:1px solid #FFF;
border-bottom:10px solid #fff;
background-color: green;
color: #FFF;
text-align:center;
position:relative;
}
* html #footer {/*only ie gets this style*/
\height:61px;/* for ie5 */
he\ight:50px;/* for ie6 */
}
You can also do the same for header but there's white space there already in that design. You will probably have to tweak the margins and stuff in the left column as they will probably be put out a bit by the 10px border.
e.g.
Code:
#left {
position:relative;/*ie needs this to show float */
width:200px;
float:left;
display:inline;/*fix for ie double margin-bug*/
margin-left:2px;
}
* html #left {height:1%}
The background images will probably need to be altered slightly to match up as well.
Code:
body {
padding:0;
margin:0;
background:#FFFFFF url(images/ezoralbg.gif) repeat-y 10px 0;
color: #000000;
border-left:10px solid white;
border-right:10px solid white;
}
example:
http://www.pmob.co.uk/temp/ezora_whiteborder.htm
I haven't had time to test it out fully but ie6 and firefox seem ok with it 
Hope that helps.
Paul
Bookmarks