capitalize text in announcement bar, dawn theme

Hi!

Can someone help me capitalize text in the announcement bar in Dawn Theme?

Hello @marjolein94

Please follow below steps:

  • Go to the Theme Editor:

    • In your Shopify admin, go to Online Store > Themes.
    • Click Actions > Edit Code next to your active theme.
  • Find the theme.liquid File:

    • In the code editor, look under the Layout folder.
    • Open the theme.liquid file.
  • Insert the Code Before the Closing Tag:

    • Scroll down until you find the closing tag.

This didn’t work :disappointed_face:

@marjolein94 Can you share your store URL?

https://c73a93-31.myshopify.com/

@marjolein94

Please try below code.


This worked! thanks :slightly_smiling_face:

Hello @marjolein94

  • Go to Online Store → Theme → Edit code.
  • Find the file base.css and paste the code below at the bottom of the file.
.announcement-bar__message.h5 {
text-transform: capitalize;
}