It seems like a basic mistake on my part, but I just can't seem to make it work.
What I'm trying to achieve is that when you hover over a specific item in the menu, the text within that item should increase in size. However, currently it only enlarges when you hover over the text itself and not the actual box containing the text.
ul li :hover{
font-size: 30px;
font-family:sans-serif;
}
ul li a{
font-size: 20px;
font-family:sans-serif;
}
Any assistance would be greatly appreciated. Thank you!