
Originally Posted by
EricWatson
Ok. You shouldn't have to AP it. Just give it a larger width then.
I'm pretty close with the AP. Assigning a width wider than 100% is problematic and will force horizontal scrollbars.
Here's what I've got so far that's working reasonably well...
Code:
html {background:#f5f5f5 url(splash_bg.png) 0 5px repeat-x;}
/*
this background extends all the way down the window and becomes
the background for the footers (since .wrapper stops just above the footer)
*/
.wrapper {background:#ccc url(splash2_bg.png) 0 155px repeat-x;}
/*
this background extends from below the header all the way to the top of the pre-footer element.
*/
.main {width:927px;margin:0 auto; position:relative;}
.pre-footer {position:absolute;width:100%; left:0;}
.pre-footer .text-widgets {float:left;max-width:230px;margin-right:20px;}
.footer { position:absolute; width:100%; text-align:right; right:20px; margin-top:30px;}
Bookmarks