Hi everyone, do you know how to reduce the size of “add to cart” button on smartphone in this featured collection?
URL SITE: https://refade-8966.myshopify.com/
password: chauri
Dawn theme
A user seeks to reduce the size of the “add to cart” button on mobile devices within a featured collection on their Shopify store (Dawn theme).
Solutions Provided:
Two respondents offered similar CSS-based approaches:
base.css file in the Assets folderProposed CSS modifications include:
!important declarations to override existing stylesBoth solutions involve targeting the quick-add/submit button class with responsive design rules. The thread includes code snippets and result screenshots, though some text appears corrupted or reversed in the original posts.
Hi everyone, do you know how to reduce the size of “add to cart” button on smartphone in this featured collection?
URL SITE: https://refade-8966.myshopify.com/
password: chauri
Dawn theme
Hey,
Go to Online store > theme > actions > edit code.
Find assets folder > base.css file.
Copy and paste this code at the bottom of the file.
@media screen and (max-width: 700px) {
.button--full-width {
transform: scale(0.8);
}
}
Result:
Hope this helps!