Top level megamenu font size

I would like to increase the font size of my top level mega menu

I am using Impulse theme and have tried different code but nothing works

thanks

https://the-body-shop-nigeria.myshopify.com/

sawnao

Hello @TBS2023 ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.site-nav__dropdown.megamenu.text-left .page-width .h5 a {
    font-size: 16px !important;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

Hello TBS2023,

Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS and add this CSS code:

.megamenu .h5 a {
    font-size: 18px !important;
}

Adjust the number (18) to fit your need.

Best regards.

Hello @TBS2023 ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your theme.css file and paste the following code at the bottom:

.site-nav__dropdown-link.site-nav__dropdown-link--top-level {
    font-size: 18px !important;
}

Regards
Guleria

1 Like