How to change Buy it now text in fabric theme

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

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;
}
1 Like