I’m using dawn theme’s latest version in that I need to remove the border only in quick look button.
Website : https://vle50pn28muxgpf9-73415852291.shopifypreview.com
Password: 2512
A user needs to remove the border from the Quick Add button on product cards in the Dawn theme’s latest version.
Two CSS solutions were provided:
Target the button directly - Add to theme.css or base.css:
.quick-add__submit {
--border-offset: 0 !important;
}
Hide the pseudo-element - Add to base.css:
.card-wrapper button:after {
display: none;
}
Implementation steps:
Both solutions target the border styling but use different approaches - one modifies the border offset variable, the other removes the after pseudo-element creating the border effect. The discussion remains open with no confirmation of which solution was implemented.
I’m using dawn theme’s latest version in that I need to remove the border only in quick look button.
Website : https://vle50pn28muxgpf9-73415852291.shopifypreview.com
Password: 2512
Hi @Sivadarshan
.quick-add__submit {
--border-offset: 0 !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hello @Sivadarshan ,
Here are the steps to apply the necessary changes in your Shopify store:
.card-wrapper button:after {
display: none;
}
Let me know if you need further assistance!