Brooklyn theme: make collection title lowercase

Hi, I was wondering if there was a way to force my collection titles to lowercase without changing the case sensitive parts in my collection name. I realize my collection name is in all caps, but I was wondering if there was a line of code to make ‘MEN’S RINGS’ ‘men’s rings’ without changing it. My URL is https://shoplineagejewelry.com/. Password is ‘beckew’ Thank you!

@adthai ,

Add this code at the bottom of timber.scss file.

#CollectionSection .section-header h1 {
    text-transform: lowercase;
}

Do let me know if it works for you.

1 Like

Thank you! It works.

1 Like

@adthai ,

You’re welcome.