Is there a way for the menu to change both the background and text color when I hover over it? Currently, my CSS only changes the background color but not the text color. Any help would be appreciated.
a:hover
{
color: #231f20; //for new text color (not working)
background-color: #ffffff; //for new background color (working)
}