CSS: Adjust body padding without effecting background padding?

ahamaz

New Member
Currently I have:\[code\]body{ background-image:url('images/background'); background-color:#000; background-position:center; background-repeat:repeat-y; padding-right: 75px; padding-left: 75px; } \[/code\]How can I get the background to act more like this:\[code\]body{ background-image:url('images/background'); background-color:#000; background-position:center; background-repeat:repeat-y;} \[/code\]while still having padding for things within the body other than the background?Basically, I want the background to not be effected by the padding settings, unlike the text, images, etc set within the body.
 
Back
Top