Krayfish
10-11-2005, 09:32 PM
A "view cart" text rollover I'm using with PayPal's shopping cart works but doesn't display properly. It will only work once in IE 6.0 (in other words, the rollover "breaks" after the first click on it). It appears to be OK in Firefox. Any suggestions on fixing are most appreciated... :)
Here's the code (the PayPal link is intentionally phony):
<html>
<head>
<style type="text/css">
<!--
a.one:link
{text-decoration:none;color:black;display:block;width:100%;height:100%;background:#959595;}
a.one:visited
{text-decoration:none;color:black;display:block;width:100%;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:100%;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,resizable,status');"><strong>View
Cart</strong></a></font></div>
</div></td>
</tr>
</table>
</body>
</html>
Here's the code (the PayPal link is intentionally phony):
<html>
<head>
<style type="text/css">
<!--
a.one:link
{text-decoration:none;color:black;display:block;width:100%;height:100%;background:#959595;}
a.one:visited
{text-decoration:none;color:black;display:block;width:100%;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:100%;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,resizable,status');"><strong>View
Cart</strong></a></font></div>
</div></td>
</tr>
</table>
</body>
</html>