Quote:
Originally Posted by Boofo
"vB is xHTML compliant pretty much right out of the box" is wrong, sorry to say. I have reported a few of them lately and they have been fixed for the upcoming RC2. Granted, it is only a few of them, but there are a few that they had to work around to do. I have been testing my hacks lately for validation, so they will be up to snuff soon.
|
Boofo, does this tag happen to be something that you mentioned and is being fixed for RC 2?
I do hope so, because it's giving me a fit on almost every page. And I didn't change any code, this is default vB code.
Quote:
Validation Output: 1 Error -
Line 550, Column 12: end tag for "optgroup" which is not finished. </optgroup>
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
|
grrrrrrrrrrrrrrrrrrrrrrrrrrr....