|
You ask about eliminating the error messages on validation.
I ran your page on the W3C validatator and the first error shown was for line 44.
When you see a message like that and you can't see anything wrong on that line go back a few lines - you have probable failed to close an element. I did this and found
on line 42:
<a href="http://loz.vintaged.info" target="new"><img src="http://img.photobucket.com/albums/v139/losalind/link.gif" border="0" alt=""/><br/><br/>
You need to close the anchor by putting </a> before the first <br />
Also be aware when using self closing tags the correct form is: <br /> i.e. a space before the backslash.
Attend to the above and try to validate again.
If you still have problems come back and I will have another look.
Hope this helps, good luck.
|