|
Hi -
A "view cart" text rollover I'm using with PayPal's shopping cart works but doesn't display properly. It will only change state once in IE 6.0 (in other words, the rollover breaks after the first click). It works fine in Firefox.
If you can help, I would appreciate it...
Here's the code (PayPal link is intentionally fake):
<html>
<head>
<style type="text/css">
<!--
a.one:link
{text-decoration:none;color:black;display:block;width:10 0%;height:100%;background:#959595;}
a.one:visited
{text-decoration:none;color:black;display:block;width:10 0%;height:100%;background:#959595;}
a.one:hover
{text-decoration:none;color:#ffffff;display:block;width: 100%;height:100%;background:#959595;}
a.one:active
{text-decoration:none;color:black;display:block;width:10 0%;height:100%;background:#959595;}
-->
</style>
</head>
<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
<table width="100" border="0" align="right" cellpadding="0" cellspacing="2">
<tr>
<td><div align="center"><font size="+0" face="Arial, Helvetica, sans-serif"><a class="one"
href="#"
onclick="window.open('https://www.paypal.com/cart/display=1&business=test%40invalid.com','cartwin'
,'width=600,height=400,scrollbars,location,resizab le,status');return false;"><strong>View
Cart</strong></a></font></div>
</div></td>
</tr>
</table>
</body>
</html>
|