Jump to content

Mouse pointer doesn't change over links/button in Cart


djcaseanova

Recommended Posts

During the check out process, I noticed that the link/button for "Empty Cart" changes to a little finger pointer. If you hover the mouse over "Checkout" it does NOT change to the finger pointer for links, but stays as an arrow. I have also noticed this for the newsletter's "Subscribe Now" button as well.

 

How do I fix this? When I am on websites, if I don't see that change, sometimes I don't realize it's a clickable icon button or link.

 

Thanks!

Link to comment
Share on other sites

CubeCart uses, in certain circumstances, a URL to inform CubeCart of certain actions to take. For example

<a href="/index.php?_a=basket&amp;empty-basket=true">Empty Basket</a>

Links generally cause a browser to change its pointer to a finger.

 

Form elements generally do not cause a browser to change its pointer to a finger. The <input type="submit" class="button_submit"> for Update Basket submits the data changed in the form.

 

With CSS styling, you can instruct the browser to show an arrow, crosshair, wait, help, pointer, etc (about 40 in all). In fact, the Kurouto skin common.css has a rule for the class button_submit, a pointer.

 

So, why does that not work?

 

Maybe I can find an answer. (Elsewhere in the CSS, the cursor:hand; is specified. But hand is not a valid property value.)

Link to comment
Share on other sites

For me, actually, Kurouto and Crosshatch does have a pointer cursor over the Checkout and Update Basket buttons.

 

But the "Subscribe Now" button... that button has a class of .submit (layout.css line 68) which does not have a cursor property. Feel free to add it.

Link to comment
Share on other sites

  • 1 month later...

You have a pointer cursor over the checkout and update basket buttons. See... When I highlight Empty Basket, I get a finger, if I move over to Update or Checkout I get a pointer. If I go to subscribe or buy now, I get a pointer, but if I go to View Basket, I get a finger.

 

It is not consistent. Can you maybe check out my page?

 

http://www.treasure-post.com/store/

Link to comment
Share on other sites

In your skin's common.css file, line 443, add:

cursor: pointer;
font-family: inherit;

to the .button_default CSS rule.

 

In the template file box.newsletter.php, edit:

Was:
<input type="submit" class="submit" value="{$LANG.newsletter.subscribe_now}" />
Now:
<input type="submit" class="button_default submit" value="{$LANG.newsletter.subscribe_now}" />
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...