Home Forums Basel support forum Menu in lower case

Menu in lower case

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #18906

    sweanton
    Participant

    Hi,

    If I want all menu items to be in lower case, how do I do that?
    The first letter of each word should be lower case as well!

    #18920

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to make the menu lowercase

    .main-nav .menu > li > a {
    	text-transform:lowercase!important;
    }

    Regards

    #18938

    sweanton
    Participant

    Thank you! 🙂

    How do I do if I want the menu items to be equally spread over the menu area? (= increasing the width between the items)

    #18945

    Artem Temos
    Keymaster

    You can increase it with the following code

    .main-nav .menu>li>a {
        padding-left: 23px!important;
        padding-right: 23px!important;
    }
Viewing 4 posts - 1 through 4 (of 4 total)