I am using jquery mega menu plugin and I want to make the right and left padding a little smaller on each menu on the top menu bar.
I can go into the css and change the padding (I am using the black skin):
.black ul.mega-menu li a {float: left; display: block; color: #fff;
padding: 12px 38px 12px 25px; background: url(images/bg_black.png)
repeat-x 100% 0; text-shadow: 1px 1px 1px #000; text-decoration: none;}
to this
.black ul.mega-menu li a {float: left; display: block; color: #fff;
padding: 12px 28px 12px 15px; background: url(images/bg_black.png)
repeat-x 100% 0; text-shadow: 1px 1px 1px #000; text-decoration: none;}
NOTE: i just changed the padding above to 12px 28px 12px 15px;
but the issue here is that the dropdown menus now no longer line up properly under the menu.
Is there anyway to change the padding on the menu buttons and still keep the sub menu items lined up properly.