I’m looking to remove the white circle with a x below to the cursor on dawn theme
password samurai
A user wanted to remove a white circle with an ‘x’ that appeared near the cursor on their Dawn theme Shopify store.
Initial Solution:
base.css or similar stylesheet targeting .quantity__button.disabled with cursor: auto !importantFinal Solution:
.button:disabled, .button[aria-disabled=true], .button.disabled, .customer button:disabled, .customer button[aria-disabled=true], .customer button.disabled, .quantity__button.disabledcursor: auto !important and opacity: .5 for all disabled button statesStatus: Resolved - the expanded CSS code successfully removed the cursor indicator across the entire website.
I’m looking to remove the white circle with a x below to the cursor on dawn theme
password samurai
Hi @undercoverfresh ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
.quantity__button.disabled {
cursor: auto !important;
opacity: .5;
}
It worked but only for the cart drawer section could you remove the white circle everywhere on the website?
Try this code @undercoverfresh
.button:disabled, .button[aria-disabled=true], .button.disabled, .customer button:disabled, .customer button[aria-disabled=true], .customer button.disabled, .quantity__button.disabled {
cursor: auto !important;
opacity: .5;
}
This worked thank you