Subcategory text colour

Hi,

How can i change the text colour for subcategory title?

Below is the current code for drop down colour and text colour:

.header__inline-menu details[open] > .header__submenu {background-color: #253929 !important;}
a.header__menu-item.list-menu__item.link.link–text.focus-inset.caption-large {
color: #ffffff!important;
}

Thanks!

Hello @Alishan12

Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.

summary#HeaderMenu-lifestore-home-accessories {
color: darkturquoise !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hello @Alishan12

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.js details>.header__submenu { background: #253929 !important; } ul.header__submenu li a, summary#HeaderMenu-lifestore-home-accessories { color: #fff !important; }

Result:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

It worked. Thanks!

Happy to help you…!!!