How does it mess it up?
Try
HTML Code:
<ul id="menuitems">
<li><a href="custom-wheels.htm">Casino-Quality Custom Wheels of<br>Chance with Your Design</a></li>
<li><a href="deluxe-wheels.htm">Casino-Quality Carnival Wheels:<br>Number, Money, Horse, More</a></li>
<li><a href="custom-prize-wheels.htm">Custom Prize Wheels<br>with Insert Slots for Your Graphics</a></li>
<li><a href="wheel-accessories.htm">Wheel of Chance Accessories</a></li>
</ul>
Code CSS:
#menuitems{
width: 300px;
}
#menuitems li{
margin : 0;
list-style-type : none;
}
#menuitems a, #menuitems a:visited{
color: #767981;
padding: 1px 5px 1px 15px;
text-decoration: none;
background-color: #edede4;
border-top: 1px solid #fff;
display: block;
}
#menuitems a:hover, #menuitems a:active, #menuitems a:focus {
background-color: #ccc;
color: #fff;
font-weight: bold;
text-decoration: none;
}
Bookmarks