How can I change fonts to uppercase in DAWN?

  1. I am using uppercase on all of my titles and headers but cannot seem to find where to edit this “Products” header. This page is automatically created when I link to shop all products.

  2. I would also like to change the “view all” button under a collection to uppercase as well.

Any suggestions?

Please and thank you.

Hi, @letmebri

Please share your store url, this one is easy, you can make those changes with a little piece of CSS code.

Hello! Thank you, I appreciate your response!

URL: www.itstopknotch.com
Password: biasau

Hi, @letmebri .

Here is the code to make the title and the button uppercase.

  1. Go to Online Store → Theme → Edit code
  2. Asset → /base.css → paste below code at the bottom of the file.
h1.collection-hero__title, .collection__view-all a {
    text-transform: uppercase; 
}