Hi,
I can’t figure out how to change the color of the word ‘menu’ I added with the next code:
/* Add word menu next to hamburger icon
/*————————*/
.av-hamburger strong {
display: block!important;
position: absolute;
left: -90%;
top: 0;
font-size: 20px;
transform: translate(-90%, -44%);
}
As you can see the word menu is green and the burgermenu is white and I want the word menu also to be white. But will scroll down it has stay green as it is now.
Can you help me out?
Best regards, Sascha
Hey Sascha,
This is the class:
.header_color strong
you need here to add a color: value.
Best regards,
Basilis
Hi Sascha,
Please add the following css:
@media only screen and (min-width: 990px) {
.av-hamburger strong {
color: #fff;
}
}
Best regards,
Victoria
Hi,
Great, I’m glad we could help. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi Sascha,
Please try the code like this:
@media only screen and (min-width: 990px) {
.av_header_transparency .av-hamburger strong {
color: #fff;
}
}
Best regards,
Victoria
Hi,
If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon