I have some menu bars, and at the moment, the Background changes to black when hovering over an
content
and the text
I'd recommend making the hover work on the 'A' elements instead of the LI elements.
In order to make the LI elements flly clickable you need to set the 'A' element within it to display:block (or inline-block) as 'A' tags are display:inline by default.
SO...
ul li a {
display:block;
}
ul li a:hover, ul li a:focus {
color:red;
}