Changing colors for some items in the burger menu Dawn 10.0.0

Is it possible to change the color of some the menu items? Let’s say i wanted WEBSHOP and KONTAKT to be red but the remaining items to be black as they are.

Hello,

Click Online Store and find the theme you want to edit.

Click the 3 dots > Edit code.

Click your assets folder, find and open base.css file.

If the link you want to turn red has more items inside (as your example) you need this code:

#Details-menu-drawer-menu-item-4 > summary:nth-child(2) {
  color: red;
}
#Details-menu-drawer-menu-item-4 > summary:nth-child(3) {
  color: red;
}

If the link does not has more items you need this one:

#menu-drawer > div > div > nav > ul > li:nth-child(3) > a {
  color: red;
}
#menu-drawer > div > div > nav > ul > li:nth-child(4) > a {
  color: red;
}

If you change your links order, you need to change the number in :nth-child(#), matching the corresponding order of you links.

Hope this helps.

Thank you very much!

You are welcome!