Posts: 256
Location: Auckland, New Zealand
|
This is definitely not XHTML 1.0 Strict. You can't have two body elements. Nor does the background attribute exist in XHTML 1.0 Strict on the body element.
There is no center element, nor can it be placed in the head section. There is no align attribute for div.
There is no border attribute for images. You are using & and not & for URLs and content.
There's probably more problems but that's what I could see just by glancing at it, first fix these errors, remove the <DIV ALIGN=CENTER> and the second body element, remove that <center> element from the head, the other problems can be fixed later but won't affect the styling now.
Either in the stylesheet add/atler the body styling:
Code:
body {
background: url('http://www.freewebs.com/extreme-soundz/bg.gif');
width: 85%;
margin: 0 auto;
/* text-align: center; */ /* Uncomment this if IE isn't centering */
}
And that should be it, but you need to clean it up.
Cheers,
MC
__________________
#------------------------------ signature---------------------------------------------------------------------------------#
Quote:
|
I am well recognised for what I don't do than what I do. Chores are just one of those things.
|
|