Cursor change on Fade Slideshow with no link

I’d like to use the Fade Slideshow with no link as a banner on my site. I prefer this because it gives me the option to add a separate image customized for mobile.

But if I leave the link blank, whenever the mouse cursor hovers over the slideshow, it changes to a round red circle with a line through it rather than just the normal arrow. If I add a link, it changes to a hand.

Is there any way to prevent the cursor from changing when there’s no link?

Hi @Ellis55

This is Mike from Omega

I can give you the CSS code to prevent cursor is changed, but I need you an url to your store then I can give you exactly the code.

Please leave the url

@Mike-Consentik Yes, of course, thank you! It’s www.zoeyellisbooks.com

Forgot to add the password: mowfla

Hi @Ellis55

You can try this CSS code

.swiper-wrapper a:not([href]) {
    cursor: default;
}

Step 1: Open Theme → Edit code

Step 2: Open Assets / base.css then paste the code above on the bottom of file

Default the cursor is an arrow, if you want to change to a hand, you can change from “default” to “pointer”.

Hope my answer will help you.

Mike from Omega

This worked, thank you!