My current CSS code is as follows:
body
{
background-image:url('images/background');
background-color:#000;
background-position:center;
background-repeat:repeat-y;
padding-right: 75px;
padding-left: 75px;
}
I want the background to behave more like this:
body
{
background-image:url('images/background');
background-color:#000;
background-position:center;
background-repeat:repeat-y;
}
How can I achieve this without affecting the padding of other elements within the body?
In essence, I'd like the background to remain unaffected by the padding settings while preserving them for text, images, and other elements inside the body.