How can I change the font and letter case in my Narrative theme menu?

Hello,

My url is: minisanitizersprayer.myshopify.com

The theme: Narrative.

I need help in changing the font of my menu.

I would prefer if it was “Sans-serif”, which i am also using for my body text.

Additionally, as shown in the attached image, some parts of the menu are uppercased, which i would like to change, so that it is only the first letter that is in uppercase instead of the entire word.

Thank you in advance! :slightly_smiling_face:

@Sadea

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

.navigation__expand-sublinks, .navigation__link a{
text-transform: none !important;
font-family: sans-serif !important;
}

@dmwwebartisan

Perfect, this worked!

How do i remove this spacing between the letters?

@Sadea ,

ul.navigation__links span {
    text-transform: none;
font-family: sans-serif !important;
}
li.navigation__link.navigation__entrance-animation.navigation__entrance-animation--active a {
    text-transform: none;
font-family: sans-serif !important;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

@oscprofessional

I fixed it, but how do i remove the spacing?

@Sadea ,

Sure.

now copy my code…

@Sadea ,

ul.navigation__links {
    margin: 0;
}

use this.

@oscprofessional

Perfect,

And now, how do I increase the text size of the highlighted section?

@Sadea

ul.navigation__links span {
    font-size: 29px;
}
li.navigation__link.navigation__entrance-animation.navigation__entrance-animation--active a {
    font-size: 29px;
}

@Sadea ,

li.navigation__link.navigation__entrance-animation.navigation__entrance-animation--active {
    max-height: 41px;

}

@oscprofessional

This changes both sections of the menu.

I would like to only edit the bold section shown here:

@Sadea

remove this css

@oscprofessional

Thank you!

@Sadea

ul.navigation__links:nth-child(1) a {
    font-size: 29px;
}

add this please

@oscprofessional

Great, but now the drop down menu is too large.

How do i make this smaller?

@Sadea

.navigation__sublink a {
font-size: 1.6rem !important;
}

@oscprofessional

Great!

Final thing, this is still too large.

@Sadea

send screenshot of English language

@oscprofessional

@Sadea

remove this css