|
At about line 39 of your stylesheet you will see this:
.navigation ul li a {
text-decoration: none;
}
Add this: display:block; so now you have this:
.navigation ul li a {
text-decoration: none;
display: block;
}
Now you can hover anywhere over the "block" or box that contains the link.
|