Hi,
Hopefully someone can help me with this, as it has been irritating me for a little while now. I’m running the attached .html (had to zip it so it could be attached to the post) file through w3c validator and it is throwing up this error:
Line 162, Column 156: end tag for “ul” which is not finished
…ul> </ul> </div> <!–end #recent-comments-…
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
I’ve gone through the code a few times now and can’t find what is throwing up the error. I have run Dreamweaver CS4’s validation tool on the code and that says it is valid, so I am slightly lost. Any ideas on what I have messed up?
Thanks in advance.
Rossy