Re: FN-FORUM: Converting PayPal view cart button to a link
date posted 14th December 2007 09:25
Ashley Harvey wrote:
> Thanks for this Vicki.
>
> It all works apart from the hover effect - that works it Fire Fox but not
> IE, any suggestions?
>
Oh yes, I've just tried it in IE7 and the hover effect is a bit
intermittent there isn't it?
http://www.xs4all.nl/~peterned/csshover.html has some info about a way
to make hover efects work in IE by adding a file called csshover.htc and
then adding
behavior: url(csshover.htc);
to the body entry in your CSS. Sorry to be a bit vague - I wonder if
someone else can help us out here?
Vicki
>
>> Hi Ashley. In general you can just style a submit button so that it
>> looks like a link, using CSS. Here's an example which produces red text
>> on a black background, and turns to yellow when you mouseover it,
>> changing the cursor to a little hand.
>>
>> .plainsubmitbutton
>> {
>> font-family: Geneva, Verdana, Arial, Helvetica, sans-serif;
>> font-size: 8pt;
>> background-color: black;
>> color: red;
>> border: none;
>> padding: 0;
>> margin: 0;
>> }
>>
>> .plainsubmitbutton:hover
>> {
>> font-family: Geneva, Verdana, Arial, Helvetica, sans-serif;
>> font-size: 8pt;
>> background-color: black;
>> color: yellow;
>> border: none;
>> padding: 0;
>> margin: 0;
>> cursor: pointer; cursor: hand;
>> }
>>
>> Regards,
>> Vicki
>>
>
>
>
>
>