When validating his site, he's getting two of these:
Line 264 column 5: end tag for "tr" which is not finished.
</tr>
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, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
Not sure if that's the issue, since I can't seem to find a </tr> in the wrong place. I think its calling out the two instances of <tr></tr> with nothing in them.
Also, I'm curious why this mod uses both id's and classes on the tables? It also throws validation errors when the id monthlyTableBoxesFeatured occurs more than once.
Symmo, did you try changing to the classic template to see if the issue continues? It could be something with apple zen, though I'm not sure what. So first lets see if it is template specific.



Reply With Quote


