Change font for dropdown menus on Prestige theme

We’d like to change the font used on the drop down / nested menus on our Prestige theme site. Ple

Apply this code

.dropdown-menu {
  font-family: "Your Font Name", sans-serif;
}

Thank you but where do I add this code? I’ve tried theme.css and theme.liquid and both have no effect

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.site-nav__dropdown {
font-family: "Your Desired Font", sans-serif;
}

Thank you but that has no effect.

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

www.greciancollective.com

p/w: chamoulis

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.link-faded-reverse {
 font-family: 'Lato'!important;
 font-size: 12px;
}

Thank you! That worked. While I have you :slightly_smiling_face: how can I update the font for the “Contact, Privacy Policy, Refund Policy etc” in the very bottom right of our site to be Lato CAPS also like the rest of our navigation?

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
a.link-faded {
    font-family: 'Lato'!important;
    font-size: 12px;
}