Should vB 3.5.4 validate at W3C (HTML)?
I checked mine and I have 17 errors and several seem to be related to each other.
This one is listed several times and I can't even find anywhere in my templates:
Then there are several where it involves <tbody> ... this one below I can't find either:
Here's another <tbody> that's listed 7-8 times so if I could fix it I'd eliminate several errors:
The last quote errors about <tbody> above seems to be referring to this template in FORUMHOME:
I wanted to validate my CSS but I can't until I get the HTML errors fixed.
Any help for this available. I read through some of the W3C help but couldn't figure it out.
Thanks!
I checked mine and I have 17 errors and several seem to be related to each other.
This one is listed several times and I can't even find anywhere in my templates:
ID "collapseobj_forumbit_1" already defined . <tbody id="collapseobj_forumbit_1" style="">
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
ID "collapseobj_forumbit_1" first defined here . <tbody id="collapseobj_forumbit_1" style="">
document type does not allow element "tbody" here . <tbody id="collapseobj_forumbit_1" style="">
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
"tbody" not finished but containing element ended . </table>
end tag for "tbody" omitted, but OMITTAG NO was specified . </table>
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
$forumbits
<tbody>
<tr>
<td class="tfoot" align="center" colspan="5"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
<if condition="$vboptions['forumleaders']">
<a href="showgroups.php$session[sessionurl_q]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>
<tbody>
<tr>
<td class="tfoot" align="center" colspan="5"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
<if condition="$vboptions['forumleaders']">
<a href="showgroups.php$session[sessionurl_q]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>
Any help for this available. I read through some of the W3C help but couldn't figure it out.
Thanks!
Comment