I am trying to build a Nav that has a :hover effect. When I hover, the hover effect will not expand to fill the entire background of the nav. I have tried manipulating it with margin and padding, but to no avail.
Here is the CSS:
div#nav {
background-image: url("images/navback.png");
background-repeat: no-repeat;
width: 580px;
height: 85px;
margin-left: 100px;
}
ul#navlist {
padding-top: 10px;
padding-left: 25px;
font-size: 15px;
font-family: 'OpenSansCondensedBold', sans-serif;
font-weight: bold;
line-height: 40px;
}
ul#navlist li{
display: inline;
list-style-type: none;
margin: 18px;
line-height: 40px;
}
ul#navlist li:hover {
box-shadow:inset 0 0 10px #ffffff;
cursor: pointer;
}
a:link {
text-decoration: none;
color: #717171;
}
I'm a little stumped, any help is appreciated!
Here is the Markup:
<div id="nav">
<ul id="navlist">
<li><a href="">Home</a></li>
<li><a href="">Buy Art</a></li>
<li><a href="">Make Money</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>