For the weather button, they have no space between the first two attributes, ahref="" should be a href="", same with the IMG (img src).
Yes, the Doctype doesn't allow the use of the CENTER tag. That's only for HTML, you're using xHTML. Simply exchange it for this:
CSS CODE:
Code:
.center { text-align:center; }
HTML CODE
Code:
<div class="center">
<img src="this-is-harz-logo.gif" width="920" height="62" alt="" />
<hr width="95%" size="2" align="center" />
<img src="bannerhead.jpg" width="920" height="282" alt="" />
<hr width="95%" size="2" align="center" />
</div>
.
For the "Parsing Error" messages, it means that you didn't end a tag that was started. For example, you may have a <P> tag, but no </p> tag to accompany it.
Depending on what wasn't working in Firefox, then some things will be fixed by zero errors... Though, mostly it's in the CSS more than it is in the HTML. Try running your CSS through the W3 CSS Validator.
Cheers,
X96
Bookmarks