How can I customize my cursor pointer during an error?

Solved

How can I customize my cursor pointer during an error?

storetool
Excursionist
16 0 7

How can I customize a pointer like that

storetool_0-1712417084932.png

 

Accepted Solution (1)
PageFly-Amelia
Shopify Partner
579 163 233

This is an accepted solution.

Hello @storetool 

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file section-main-product.css

Step 3: Add code

::-webkit-scrollbar-button, a, :link, :visited, img {
    cursor: url(#yourfile) 16 16, pointer !important; /* You must change the value of #yourfile to the value you want */
}

Step 4:  Chose file base.css and delete 

body {
    cursor: pointer;
}

 

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

PageFly-Amelia
Shopify Partner
579 163 233

Hello @storetool 

This is Amelia at PageFly - Shopify Advanced Page Builder app.

 

Could you please provide me with the URL so I can check it for you?

 

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

PageFly-Amelia
Shopify Partner
579 163 233

This is an accepted solution.

Hello @storetool 

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file section-main-product.css

Step 3: Add code

::-webkit-scrollbar-button, a, :link, :visited, img {
    cursor: url(#yourfile) 16 16, pointer !important; /* You must change the value of #yourfile to the value you want */
}

Step 4:  Chose file base.css and delete 

body {
    cursor: pointer;
}

 

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

storetool
Excursionist
16 0 7

Thank you ggg