Remove the hand cursor on buttons

Hi there i want to use the button element for aesthetics but i do not need it to link anywhere. I have not added a link to the button but the hand cursor still shows on hover. Is there any way to remove the hover state on a per button element way?

Many thanks

Hello Tariq,

Thanks for posting in! Button element will always have a pointer. Please insert # as the link and then find the “Customize” tab and insert inline element css:

$el {
  pointer-events: none;
}

To learn more about the css pointer event property, please check this out:

1 Like

You are the best this worked a charm thank you!

You’re welcome, Tariq.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.