How can I update the text on my checkout button?

I want to change the text on my Checkout button from “Check out” to “Check Out”…capitalize the O. I have watched several videos and they are either old or not straight forward. Here is a picture: and link: https://disguisethesurprise.com/cart

Hi @DuffyH

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

button.btn.btn–no-animate.cart__checkout {

text-transform: capitalize !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hi @DuffyH

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
button.btn.btn--no-animate.cart__checkout {
    text-transform: capitalize !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you, but I was able to get it solved.

Thank you for your help. I followed, but got lost in one step, but the person below directed to “assets” and then paste and it worked. Thank you for your help!

Thank you for your help on this! By you adding in the “assets” step, I was able to complete. When you don’t know code at all, having literally a step-by-step instruction is the only way.

You are welcome @DuffyH :blush: