Reputation: 55273
The following page has white (left) and dark gray (right) background. I checked the CSS and it has a white background image and color: #FFF
. I can't figure out how did he archived that.
How to do that?
(If you enlarge the web browser both colors enlarge themselves too.)
Upvotes: 1
Views: 1052
Reputation: 345
It will work perfectly fine at any resolution.
body{
background:url("img/home_page_bg.gif") repeat scroll center top #fff;
}
Upvotes: 0
Reputation: 67194
It's done with a really long BG image. Set that as the html background and position your divs accordingly :)
html {
background:#FFFFFF url(images/bg.gif) repeat scroll center top;
text-align:center;
}
Upvotes: 1
Reputation: 1289
He has a huge backgroundimage on the html tag:
html {
background: url("images/bg.gif") repeat scroll center top #FFFFFF;
}
Check the image:
http://www.voceantica.com/wp-content/themes/tao/images/bg.gif
Upvotes: 1