Hey,
First of all, on that page check the option for “show source” .
Then click the line numbers in the errors to go directly to the problem.
Ok the first error is in your side bar. See you have an extra < ul > tag and the < br > tag is not needed either. Delete both of them. That fixes the first error.
The second error is that you have a list item out of place.
So it should be just:
<h2>General Info:</h2>
<ul id="is_link">
<li><a href="https://sevenstripes.com/blog/">Home</a></li>
<li><a href="https://sevenstripes.com/blog/about-the-writer/">About Me</a></li>
<li><a href="https://sevenstripes.com/blog/about-the-site/">About Site</a></li>
<li><a href="https://sevenstripes.com/blog/archives/">Archives</a></li>
<li><a href="https://sevenstripes.com/blog/legal-disclaimers/">Disclaimers</a></li>
</ul>
The next error is because you have already used that ul id for General Info and now you are using it again for Most Recent Posts. You cant do that. It has to be unquie for each one.
So now error number 5. This one tells you what to do. Read the error message. ??
So change this line:
<input type="hidden" name="currency_code" value="USD">
To this:
<input type="hidden" name="currency_code" value="USD" />
Error number 7 is same thing. Again you are using list items wrong. List items belong to unordered or ordered lists. Not the other way around.
For error 8 change this:
<ul>
<script type="text/javascript" src="https://embed.technorati.com/embed/k362wah8za.js"></script>
</ul>
To This:
<ul><li>
<script type="text/javascript" src="https://embed.technorati.com/embed/k362wah8za.js"></script><li>
</ul>
See how its rapped in a list item. Its that simple. That should also fix 9 and 10.
Errors 11-14 are again because you have to use unquine names for the id.
Again for errors 15-17 it must be wrapped in a < li > tag.
Errors 18-19 again always used ids.
For error 20 you have two li tags.
So change this:
<li><a href="https://sevenstripes.com/blog/wp-login.php">Login</a><li><a href="https://sevenstripes.com/blog/wp-register.php">Register</a></li></ul>
To this:
<li><a href="https://sevenstripes.com/blog/wp-login.php">Login</a><br/><a href="https://sevenstripes.com/blog/wp-register.php">Register</a></li></ul>
That should fix 21 and 22 as well.
Again for 23 and 24. Must be unqunie.
For 25-30, again you must have it wrapped in < li > tags.
For 31 again get rid of that. Dont need it.
Everything else should be fixed by doing the above. ??
Let me know if you still need help.
Take Care,
Will