I need to change the colour of the menu item button that appears beside the burger menu in the header to #BE4E02.
I tested with Custom CSS:
#top #header_main #menu-item-548 a {
color: white;
}
But that changed the space behind the button to white.
I tried:
#top #header_main #menu-item-548 a {
color: white;
}
But that didn’t change anything.
Hey Tanja,
Thank you for the inquiry.
Try to use this css code instead:
#top #wrap_all .header_color #menu-item-548 > a .avia-menu-text {
background-color: red;
color: blue;
border-color: black;
}
Best regards,
Ismael
Perfect, thank you!