MOTION THEME - Breadcrumps - Change to all caps?

Quick question, how can we change this theme’s breadcrumbs function to be ALL CAPS ?
i.e. - HOME / COLLECTIONS / * / *

Example on how it currently looks like:

Thanks!

Here’s a preview link to the store:
https://28x38yzbem51frl6-50647859379.shopifypreview.com/

Hii, @lion_no
Paste this code on top of the theme.scss file.

em span {
    text-transform: lowercase !important;
}

Thank You.

Hii @Zworthkey !
That unfortunately didn’t work,

as seen here:

(Viewing from a direct preview, after adding code)

1 Like

@lion_no
Paste this code on top of the theme.scss file.

nav.breadcrumb a, span {
    text-transform: lowercase !important;
}

Thank You.

.breadcrumb {
    text-transform: uppercase !important;
}

Add this code in theme.scss or theme.css

@lion_no

1 Like

Thanks a lot, once again!
That solved it just like I had imagined :grinning_face_with_smiling_eyes:

1 Like