hi there,
i got a full width submenu on a page, set on alternate content. link color in options —> alternate content is set on #ffffff. how can i set the link color in the full-width-submenu correctly to #ffffff?
Hi volmering!
Try adding this to your custom CSS.
.alternate_color .av-subnav-menu a {
color: white !important;
}
Best regards,
Elliott
hey elliot, magnificent. thx alot. is it possible to get the background colored on hover?`i tried:
.alternate_color .av-subnav-menu :hover {
background-color: white !important;
}
but u know thats not perfect :-)
Hi!
You mean for the link backgrounds or the whole menu? I just checked your link again and the link backgrounds are turning grey on hover now so I assume you figured it out.
Regards,
Elliott
yes, but when u go slowly on the link, the background and the text-background do not hover similar. i hope my english is good enough to explain what i mean :-)
Hey!
Try adding this.
.alternate_color .av-subnav-menu li:hover, .alternate_color .av-subnav-menu li:hover a {
background: grey !important;
}
Regards,
Elliott
nothing more to say but perfect. thumbs up :-)