Hello π
I see what you mean. This CSS should fix that:
#menu-primary a,
#menu-primary a:link,
#menu-primary a:visited {
color: white;
}
#menu-primary a:hover,
#menu-primary a:active,
#menu-primary a:focus {
color: #00005b;
}
@media all and (min-width: 800px) {
#menu-primary a,
#menu-primary a:link,
#menu-primary a:visited {
color: #00005b;
}
}
That sets the color of the menu items to white, and then makes them dark blue if they’re hovered over/clicked on. It will also keep them dark blue for any screens wide enough to show the regular menu.
Hello Ben π
Thank you so much! It worked like a charm!! π