How to remove the text capitalization throughout the site for every single page? DAWN THEME

Hi,

All the text content on my site is in “capitalize” format and I would like them to be in a normal format except for the Nav bar header, I think it has to do something with the CSS property as follows

/* Current Value */
text-transform: uppercase;

/* The value I want */
text-transform: none;

If you take a look at my site you can see what I am referring to:

URL: https://abbasigems.com/

Password: testingpage

For example, in the link above as you can see in the announcement bar the text is:

“Payment Gateway Down For Now, If You Want To Purchase Contact Us”

and I would like them to be in the following format:

"Payment gateway down for now, if you want to purchase contact us"

Thank you,

Any help is much appreciated!

Hi @justauser ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:

Step 1: Go to Online Store->Theme->Edit code

Step 2: Asset->/base.css->paste below code at the bottom of the file:

p.announcement-bar__message.h5{
text-transform: none !important
}

Hi @PageFly-Kate ,

I want all the text content on my site to be on "text-transform: none !important" , the announcement bar was an example.

Thank you

Hi @justauser
You can add this to base.css

h1, h2, h3, h4, h5, h6 {
text-transform: none !important;
}

Hope this will help you!