If you want to move the main links to the left, try this:
.jqueryslidemenu ul li a {
display: block;
background: #3C3436;
color: #cccccc;
padding: 7px 5px;
border-right: 9px solid #3C3436;
color: #cccccc;
text-decoration: none;
}
I changed the padding (left & right) from 2px to 5px to match the drop links.
If you want to change just the padding on the sides of the drop links, without affecting the padding between the drop links, try this:
.jqueryslidemenu ul li ul li a {
font: normal 11px Verdana;
width: 100px;
padding: 5px 12px;
margin: 0;
border-top-width: 0;
border-bottom: 0px solid gray;
}
A single value will affect all 4 sides,
and if there's just two, the first padding value changes the top and bottom and the second affects the left and right.
And if you want to get more detailed, you can specify them individually:
http://css-tricks.com/remember-the-o...-with-trouble/
Sometimes a rule is being over-ruled elsewhere (you can check which values are declared and which actually get computed. Check out Developer Tools in your browser). You can also turn rules on and off here without making permanent changes.
Bookmarks