I’m struggling to find out where this <UL> error is coming from during validation checks. It is saying I have an unopened <UL> tag… please can someone assist me as I’m lost as to where this tag is :S.
Thanks
Kirsty
This is the error:
Line 67, Column 5: end tag for “ul” which is not finished
</ul>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 require appropriate list items (<ul>and<ol>require<li>;<dl>requires<dt>and<dd>), and so on.
The answer is right there:
For instance, in HTML the element must contain a child element, ... <ul> and <ol> require <li>...You have an empty
<ul></ul>in your code (in fact, exactly where the validator tells you where it is), and that’s illegal.