Posts: 175
Location: Wiltshire, England
|
Hey stoot,
I've had a very quick look and the first thing I noticed when looking at the source code is that the landawedding site is being displayed in frames, whereas the original on AOL is a standard set up without frames.
This is most likely the cause of the problem. The target source for the frames based site has absolute links to the source pages on the AOL site which is fine for the main page content, but these pages then use relative links to the images and links.
I am assuming the frames based site is actually hosted on 1and1 web space. If this is the case the pages are looking for the images on the 1and1 web space and they aren't there.
There are a number of ways around this.
1. Move the whole site from AOL to 1and1 and do not use frames (This is probably the easiest method).
2. Update the AOL site to use absolute links to the images/links etc
Example:
HTML Code:
<!-- Change this -->
<a href="javascript:;" onMouseOver="MM_swapImage('home_r1_c8','','images/home_r1_c8_over.gif',1)" onMouseOut="MM_swapImgRestore()"><img name="home_r1_c8" src="images/home_r1_c8.gif" width="20" height="30" border="0" alt=""></a>
<!-- To This -->
<a href="javascript:;" onMouseOver="MM_swapImage('home_r1_c8','','http://members.aol.com/weddinglanda/images/home_r1_c8_over.gif',1)" onMouseOut="MM_swapImgRestore()"><img name="home_r1_c8" src="http://members.aol.com/weddinglanda/images/home_r1_c8.gif" width="20" height="30" border="0" alt=""></a>
3. Use web forwarding to redirect users to the aol website
Hope this helps.
Ian.
|