Changing font Size in Header Menu Prestige

Good day everyone, i recently added a secondary menu to my header.

I managed to lock it’s position correctly and display it but i can’t seem to figure out how to apply sizing css changes to it

i used this code when i tryed to make the changes ( Bottom of Theme.css file)

.secondary_menu {
    position: relative;
    top: -5px; 
    font-size: 20px;
    left: 30px;
    font-weight: bold;
}

Copy

This is the menu ( Picture below )

NZA_0-1626560715523.png

Website ulr: https://luxury-cartell.myshopify.com/

Password: stoyol

Thank you very much in advance!

You should be able to add the following CSS to your theme CSS file:

.secondary_menu .HorizontalList__Item a {
    font-size: 20px;
    font-weight: bold;
}

Hope that helps!

1 Like

Thank you that worked perfectly! @laurafizzypixel

1 Like