Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I quickview of "pairs well with":
Please, I want AddToCart bigger and delete the line containing "Availability : In Stock"
Website URL: happyoff.com
Hey @Optimist1
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
.t4s-available-wrapper {
display: none !important;
}
.t4s-product-form__buttons .t4s-product-form__submit {
font-size: 20px !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
The Line is removed but the AddToCart Button is still in the same size - and do not forget the font size of the "Add to cart" Text, Here you are the screen:
Hello @Optimist1
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.t4s-product-form__variants.is-btn-full-width__false .t4s-product-form__submit {
width: 100% !important;
min-width: unset !important;
max-width: 100% !important;
}
.t4s-available-wrapper {
display: none !important;
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
The Line is removed but the AddToCart Button is still in the same size - and do not forget the font size of the "Add to cart" Text, Here you are the screen: