|
very cool, thanks so much! For anyone looking for a quick copy/paste, here's the code I used. You just stuff it into the CSS file
#button ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}
#button li {
border-bottom: 1px solid #FFFFFF;
margin: 0;
}
#button li a {
display: block;
background-color: 666666;
color: #fff;
text-decoration: none;
width: 100%;
}
html>body #button li a {
width: auto;
}
#button li a:hover {
background-color: #FF00FF;
color: #fff;
}
|