Hi,
I created rollover buttons in ImageReady CS2, which generated the html for my web page.
The rollover buttons each had their table cell, but that caused problems with IE and the cell height, so I combined them all into one td.
It now works but for some reason each link opens a new window! and they even stop working after a while
The page is:
www.seroscience.com
Here is one of the links:
<a href="contact.html"
onmouseover="changeImages('Contact', 'images/Contact-over.gif'); return true;"
onmouseout="changeImages('Contact', 'images/Contact.gif'); return true;"
onmousedown="changeImages('Contact', 'images/Contact-over.gif'); return true;"
onmouseup="changeImages('Contact', 'images/Contact-over.gif'); return true;">
<img src="images/Contact.gif" alt="Contact" name="Contact" width="204" height="25" border="0" id="Contact" /></a>
Any help would be greatly appreciated!
|