How can I change 'Buy It Now' to 'Buy Now' on my product page?

I imported my product page from pagefly, and had one of ther customer supporters help me change colour of the coded buy now button. does anyone know how to change the name from buy it now to buy now.

Hi @Loke2 ,

This is Victor from PageFly - Free Landing Page Builder.

Please add this code to your theme CSS file

Step 1: Online Stores > More action > edit code > search for your .css file ( could be theme.css

Step 2: Paste the code at the end of the file

.shopify-payment-button__button {

  font-size: 0 !important;

}

.shopify-payment-button__button::before {

content: 'Buy Now';

   position: absolute;

   visibility: visible;

   top: 0;

   left: 0;

   bottom: 0;

font-size: 14px;

    display: contents;

}

Hope this can help you solve the issue

Best regards,

Victor | PageFly