I'm having problems validating the code with W3C...
Quote:
character "<" is the first character of a delimiter but occurred as data .
<a style="float:right" href="#top" onclick="return toggle_collapse('forumbit_
This message may appear in several cases:
* You tried to include the "<" character in your page: you should escape it as "<"
* You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe.
* Another possibility is that you forgot to close quotes in a previous tag.
|
Quote:
an attribute value literal can occur in an attribute specification list only after a VI delimiter .
<a style="float:right" href="#top" onclick="return toggle_collapse('forumbit_
Have you forgotten the "equal" sign marking the separation between the attribute and its declared value? Typical syntax is attribute="value".
|
Quote:
end tag for element "a" which is not open .
...pse_tcat.gif" alt="" border="0" /></a>
The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.
|
Any ideas how to correct?