Hello
I am new here so please be nice :)
Anyway, I am writing my own website in asp.net and am having problems with the CSS in my master page. Basically I have a header that loads fine, a footer that loads fine, and a general page body that loads fine, but I also have a central content div which should have a background image, but for some reason it does not load.
The CSS is....
#generalContent {
width: 980px;
background: url(/Kevin/images/img02.jpg);
}
The Master page has a div, <div id="generalContent">, which has 2 other div's nested inside, one is a sidebar with all code in the master page including some background images that are working (just menu headers) and the other is the content div created by the asp.net which is, at the moment empty.
Any advice?