Add uppercase text throughout my entire site - Dawn Theme 10.0

Hi,

I would like all text throughout my entire site to be uppercase (headings, descriptions, titles, etc.) How can this be achieved in the Dawn 10.0 theme? Thanks in advance for any assistance!

1 Like

Hi @bougli ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. And Save.
body.gradient {
    text-transform: uppercase;
}

Result:

I hope it help.

1 Like

Hi, @bougli .

Follow These steps,

Go to the online store theme and go to base.css file paste the code mentiond below.

body.gradient {
    text-transform: uppercase;
}

Result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Thank you for your reply. I pasted this at the bottom of base.css, but this did not work.

1 Like

Thank you for your reply. I pasted this at the bottom of base.css, but this did not work. It worked before I updated my Dawn theme to 10.0

At least on mobile it doesn’t seem to be working

It doesn’t seem to be working on mobile

can you share your store URL and password?

Hello @bougli

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
    text-transform: uppercase;
}
p {
    text-transform: uppercase;
}
a {
    text-transform: uppercase;
}

Hi @bougli ,

Its working now? Did you try to paste it on the custom css?

Go to Customize theme.. choose the Theme Settings > 2nd to the last youll find the Custom CSS.

Add the code here.