First try replacing this:
Code:
<td width="510" align="right">
<p align="right">
<div style="width:401px;height105px;overflow:hidden">
<div class="slideshow">
<a href="praise.htm"><img src="images/sm_revsong.jpg" width="400" height="104" /></a>
<a href="future.htm"><img src="images/sm_future.jpg" width="400" height="104" />
<a href="vid_hibbs.htm"><img src="images/sm_hibbs.jpg" width="400" height="104" />
<a href="lostboy.htm"><img src="images/sm_lostboy.jpg" width="400" height="104" />
<a href="trials.htm"><img src="images/sm_trials.jpg" width="400" height="104" />
<a href="unshackled.htm"><img src="images/sm_unshackled.jpg" width="400" height="104" />
</a>
</div>
</td>
With valid code:
Code:
<td width="510" align="right">
<div style="width:401px;height105px;overflow:hidden;">
<div class="slideshow">
<a href="praise.htm" target="_parent"><img src="images/sm_revsong.jpg" width="400" height="104" /></a>
<a href="pp.htm" target="_parent"><img src="images/sm_pp.jpg" width="400" height="104" /></a>
<a href="future.htm" target="_parent"><img src="images/sm_future.jpg" width="400" height="104" /></a>
<a href="vid_hibbs.htm" target="_parent"><img src="images/sm_hibbs.jpg" width="400" height="104" /></a>
<a href="lostboy.htm" target="_parent"><img src="images/sm_lostboy.jpg" width="400" height="104" /></a>
<a href="trials.htm" target="_parent"><img src="images/sm_trials.jpg" width="400" height="104" /></a>
<a href="unshackled.htm" target="_parent"><img src="images/sm_unshackled.jpg" width="400" height="104" /></a>
</div>
</div>
</td>
Bookmarks