How can I change my menu text to lower case on my page?

anyone know how i can make the menu on this page in normal text so its not in caps?

HOME > COATS/JACKETS > TAILORED DOUBLE BREAST JACKET

these are what i want to change. the products are all written in lower case on their pages.

https://lesbrons.com/collections/coats-jackets/products/white-jacket

1 Like

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->stylesheet.css

#breadcrumb a {
    text-transform: lowercase !important;
}
#breadcrumb span.page-title {
    text-transform: lowercase !important;
}
1 Like

@lesbrons

Please add the following code at the bottom of your assets/stylesheet.css file.

.template-product div#breadcrumb {
    text-transform: capitalize !important;
}

Hope this works.

Thanks!

thank you so much!

I am not seeing a stylesheet.css file