Adam, you mess your links.
Change this part:
Code:
<a href="000013.jpg">
<img src="000013.jpg" alt="Pool With Slide" longdesc="POOL WITH SLIDE" width="243" height="179"></a><a title="Jolie Myers / The State News" rel="http://portfolio.statenews.com/users/Jolie_Myers/" href="images/1.jpg">
</a>
into:
Code:
<a href="http://littlewigan.pwp.blueyonder.co.uk/000013.jpg">
<img src="http://littlewigan.pwp.blueyonder.co.uk/000013.jpg" alt="Pool With Slide" longdesc="POOL WITH SLIDE" width="243" height="179"></a>
The error is that you have is the invalid markup:
Code:
<a href="..."><img src.....></a><a rel="...."></a>
which should be:
Code:
<a href="..." rel="..."><img src.....></a>
Bookmarks