Hello there! Is it possible to change the color of the burger menu to have a different color for each line? The three lines need to be each one of a different color. Thanks!
Hey studiono,
Try adding this CSS code, just replace the colors (they are arranged in order from top to bottom):
#top .av-hamburger-box .av-hamburger-inner:before {
background-color: red;
}
#top .av-hamburger-box .av-hamburger-inner {
background-color: green;
}
#top .av-hamburger-box .av-hamburger-inner:after {
background-color: blue;
}
Best regards,
Nikko
it works, great! thanks Nikko!