How can I make this lower case via code

blakelower
Excursionist
24 0 6

I'm using sections and one of the sections is promotion. I'd like to make the top section lower case but it seems impossible with the theme

Screen Shot 2021-07-12 at 11.20.41 AM.png

Replies 4 (4)
ashiqueh4
Shopify Partner
361 34 57

use section id and apply css to make it small or big

Shopify ,Shopify plus and Shopify 2.0 theme developer and customization

I Would like to add new functionality or customize an existing one, please hire me.
If helpful then please Like and Accept Solution .
Email: ashiquehussaincodediary@gmail.com

Nick_Marketing
Shopify Partner
1487 335 450

Use CSS property
text-transform: lowercase;

Can read up more here:
https://www.w3schools.com/cssref/pr_text_text-transform.asp

Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).
blakelower
Excursionist
24 0 6

Where should I add that in? In the theme.style.css?? 

Nick_Marketing
Shopify Partner
1487 335 450

Try using Inspect Element tool in the Chrome browser to find where the css element for the Text is located. It could be in theme.scss or embedded somewhere inline.

Try adding either
text-transform: none;  <--- This one most likely will work better!
or
text-transform: lowercase;

Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).