|
I'm using a pretty basic vertical rollover type menu. It works in an acceptable manner but I need to move things around just a bit. Maybe I've been looking at it too much, but I just can't figure out how to move the links to the right just a bit and I need to raise the links up just a bit.
Here is my CSS:
div.menu {
width:185px;
padding: 0.9px;
margin-top: 0.7em;
margin-left:0.5em;
border:0px;
text-align:left;
}
div.menu a {
background-image:url('http://vance.thebams.org/new/2/images/button.jpg');
display:block;
font-size:20px;
width:100%;
padding: 0.30em;
margin-left: 0.3em;
font-weight:bold;
border-top:1px ;
color: rgb(255,255,0);
text-decoration:none;
line-height:25px;
}
html>body div.menu a {width:auto;}
div.menu a:hover {
color: #FFF;
font-size:20px;
font-weight: bold;
font-style: italic;
}
If a fresh set of eyes could look at this and tell me how I can move my navigational links to the right ust a tad and raise them up just a tad I would be greatful.
Thanks
Last edited by LadynRed; 10-19-2008 at 01:23 PM..
|