Hi, I'm adding custom rollovers to my navigation buttons like this
<td><a href="More_Info.html"
onMouseOver="SwapImage('moreinfo','brochuremore2.gif')"
onMouseOut="RestoreImage()">
<img src="brochuremore1.gif" alt="more info"
name="moreinfo" border="0">
</a></td>
where more_info is a brochure page. The problem I have is if I upload the site it all works fine but if I preview the site it doesnt prepend the P_ to the url name and so cant find the link. Anyone know how to get this to work both online and in preview mode.
Thanks.
<td><a href="More_Info.html"
onMouseOver="SwapImage('moreinfo','brochuremore2.gif')"
onMouseOut="RestoreImage()">
<img src="brochuremore1.gif" alt="more info"
name="moreinfo" border="0">
</a></td>
where more_info is a brochure page. The problem I have is if I upload the site it all works fine but if I preview the site it doesnt prepend the P_ to the url name and so cant find the link. Anyone know how to get this to work both online and in preview mode.
Thanks.
Comment