The background doesn't go over the text, it's just that it's almost black at the top and since the text is also black you can't see it. You can make the text white to see that the text is indeed on top:
Code:
#body {
text-align: center;
width: 700px;
background: #115c2b url(background.png) repeat-x;
color: #fff;
}
What you can do is position the background from the bottom so the lighter part is showing instead:
Code:
#body {
text-align: center;
width: 700px;
background: #115c2b url(background.png) bottom repeat-x;
}
Good luck!
Bookmarks