I looked at similar questions, but I was still stuck.
I am writing a website in ASP using MSVWD10. For just 1 page, I want to have an image of 960x700 pixels in size, on which text will be displayed on top of it. This text will change frequently. I tried to set this in CSS, but the image seems to duplicate itself.
Here is the CSS.
#about
{
background: url(img/about.jpg) no-repeat 0 0;
text-align: center;
background-color: #888888;
width: 960px;
min-height: 685px;
position: relative;
margin: auto;
}
Do I need to set div on content page?
idny source
share