How can I change my site title to all caps in Dawn theme?

Hi, I need the site title where it says “Empirical Water” at the top left to be in all caps. How may I accomplish this?

URL: https://empiricalwater.com/

Using Dawn theme

Store password: arby

The password is arby

Hi @empiricalarby ,

Please follow the instructions below

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the base.css
  3. Paste the code below at the very bottom of the file.
#shopify-section-header > sticky-header > header > h1 > a > span {
    text-transform: uppercase;
}

Thank you, it now says it in all caps but only on the main page of the website. When I click on a product or go to the cart or go to the contact page, it reverts back to the original way, Empirical Water instead of EMPIRICAL WATER.

@empiricalarby ,

My bad. Please replace the code provided to the code below

.header__heading-link > .h2 {
    text-transform: uppercase;
}

Thanks! This solved that issue, however there is just one thing remaining. On the password page it is still not all caps. I appreciate your time.

@made4Uo Any idea how to accomplish this? Thanks

Hi @empiricalarby ,

Please add the code below.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the base.css
  3. Paste the code below at the very bottom of the file.
.password-header > h1.h2 {
    text-transform: uppercase;
}

Thank you very much, the issue is fully solved now.