
December 6th, 2012, 04:10 AM
|
|
|
You don't need all those separate background elements, just use
Code:
body {
background: url(images/bg_body.png) no-repeat fixed center top #e4e4e4;
}
Also, if it is just a rounded corner box then you can do all you need in CSS3 without having to use an image (though doesn't work in IE8 and below) by using a background color and border-radius, for example (change the px value to your requirements)
Code:
body {
background: #e4e4e4;
-moz-border-radius: 10px; /* Firefox */
-webkit-border-radius: 10px; /* Safari, Chrome */
border-radius: 10px; /* CSS3 */
}
Last edited by simplypixie : December 6th, 2012 at 05:23 AM.
|