How can I change button text to block capitals in Dawn theme?

I’d like to change the text on this button to “CHECKOUT” to make it stand out more. The screenshot is from the Cart page and I’m using Dawn theme. I’ve looked in the “edit default theme settings” but without success. Any help with where to change this would be greatly appreciated!

Hi @Alun

Check 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#checkout {
    text-transform: uppercase !important;
}

And Save.

Result:

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

Thanks @Made4uo-Ribe - works a treat!