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 want to change the buy it now button text to upper case like "BUY IT NOW" but i cant find the place. I chcked default theme content also but its not there. I am using fabric theme
Solved! Go to the solution
This is an accepted solution.
Hi,
Hope this will help
- Look for one of these files: roduct-form.liquid , product-template.liquid, main-product.liquid Or check inside sections or snippets folders and look for buy_it_now.
- Add CSS to Make It UPPERCASE
CSS example
.shopify-payment-button__button {
text-transform: uppercase;
}
This is an accepted solution.
Hi,
Hope this will help
- Look for one of these files: roduct-form.liquid , product-template.liquid, main-product.liquid Or check inside sections or snippets folders and look for buy_it_now.
- Add CSS to Make It UPPERCASE
CSS example
.shopify-payment-button__button {
text-transform: uppercase;
}