Quote:
Originally Posted by Razz
tamarian I'm still getting a couple of errors on the XHTML compliance test, I've managed to track it back to this column hack.
Code:
<tr valign="top"></tr>
"end tag for "tr" which is not finished"
Any ideas?
It seems to be something to do with having uneven numbered subforums as I get two occurences of this and have 2 lots of uneven numbered subforums.
|
Try this:
PHP Code:
if ($cols ==1) $output.="<td> </td></tr></table>";
else $output.="</tr></table>";
Instead of this:
PHP Code:
$output.="</tr></table>";
This should add an empty cell to odd numbered sub-forums.
Let me know if it passes, and I'll add it to the original.