Hi all!
I’d like to make the text in my Navigation menu all in Capital letters, but I cannot seem to be able to change this anywhere.
doe anyone have some code for this?
As well, I’d like the words to be further apart if possible!
TIA
Hi all!
I’d like to make the text in my Navigation menu all in Capital letters, but I cannot seem to be able to change this anywhere.
doe anyone have some code for this?
As well, I’d like the words to be further apart if possible!
TIA
Hello,
You can do this with css
.you_navigation_class {
text-transform: uppercase;
}
Note: Change ‘you_navigation_class’ according to your theme navigation css.
In debut theme you can try this, just add this in theme.scss.liquid under Assets
span.site-nav__label {
text-transform: uppercase;
}
Thanks
Welcome to shopify community, this is certainly possible , either by customizing the theme within admin or through code change. Please share the URL of the site so someone can suggest solution