Within file path –> /templates/ja_magz/css/template.css
at line 1851, you will see the following:
.t3-mainnav .navbar .nav > li > a {
border-left: 1px solid #1A2C4A
border-top: 0 none;
color: #FFFFFF
font-size: 12px;
font-weight: 700;
padding: 3px 20px;
text-shadow: none;
text-transform: uppercase;
}
Modify the “padding” property to reduce the space between each menu item – for example:
.t3-mainnav .navbar .nav > li > a {
border-left: 1px solid #1A2C4A
border-top: 0 none;
color: #FFFFFF
font-size: 12px;
font-weight: 700;
padding: 3px 10px;
text-shadow: none;
text-transform: uppercase;
}
You can, of course, play around with the pixel value until you arrive at the result you’re most happy with.
Hope That Helps