I want to remove the button border line on quick add button in my store
website link: https://mxc71fbmuklt43xr-93050175853.shopifypreview.com
password: amber
A user seeks to remove the border line from the quick add button on their Shopify store using the Dawn theme.
Problem:
Solutions Provided:
Two community members offered CSS-based fixes:
First solution targets the button’s pseudo-element:
base.css: button.quick-add__submit:after { box-shadow: none !important; }Second solution targets the button directly:
base.css or component-button.css: .quick-add__submit { border: none !important; box-shadow: none !important; }Implementation:
Both solutions use !important flags to override existing styles. The discussion remains open pending confirmation from the original poster.
website link: https://mxc71fbmuklt43xr-93050175853.shopifypreview.com
password: amber
Hello @Sivadarshan ,
Here are the steps to apply the necessary changes in your Shopify store:
button.quick-add__submit:after {
box-shadow: none !important;
}
Let me know if you need further assistance!
Hi,
Hope this will help
CSS example
.quick-add__submit {
border: none !important;
box-shadow: none !important;
}