How can I alter the dropdown menu color and size in Sense theme?

Hello! How to remove the blue color from the dropdown menu and make it smaller?

Hello @Geriks1987
Please share your website URL.

@Geriks1987 Can you share password of your store?

The password is 123

123

@Geriks1987

I would like to give you a solution to support you:

  1. Go to Online Store-> Theme-> Edit code
  2. Open your theme.liquid theme file
  3. Paste the below code before :
<style>
.header__submenu {
background-color: white !important;
}

</style>

Was my reply helpful? Please Like and Accept Solution. This mean alot to me.

1 Like

@Geriks1987
Put below css into base.css file (Online store->themes->Edit code->assets->base.css)

ul#HeaderMenu-MenuList-2 {
    background-color: white !important;
}
ul#HeaderMenu-MenuList-3 {
    background-color: white !important;
}

1 Like