Currently I have background image displayed, but on larger screens it is filled with white around background image.
I would
not like the background to repeat but rather the color be black around the image.
This is background code in the css.
Code
}
body {
background: url(../images/2.png) no-repeat center top;
font-family: Arial;
min-width: 960px;
margin: 0;
}
img {
What is needed to add so that the entirety of the webpage beyond the background image will display in black?
Thanks in advance for any help.