-
The main menu items are forced to be capitalize, i would like to cap only the first letter, is there any easy way to work around it? thanks in advance |
Beta Was this translation helpful? Give feedback.
Answered by
eleozzzz
Dec 26, 2024
Replies: 1 comment
-
i change the in the themes/anatole/assets/scss/partials/layout _nav.scss |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
eleozzzz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i change the
&-item { padding: 16px 0; text-transform: uppercase; text-align: center; white-space: nowrap;
to
&-item { padding: 16px 0; text-transform: none; text-align: center; white-space: nowrap;
in the themes/anatole/assets/scss/partials/layout _nav.scss
and that make the change