Moderator
t-p
(@t-p)
in your CSS file, look for element:
#menu ul li a{
within that element look for these two item:
padding-left:10px;
padding-right:10px;
change “10px” to zero or some other number you like.
I don’t have “padding-left” or “padding-right” anywhere in my css file!
This is how it looks like here:
#menu ul li a {
padding:10px;
margin: 0;
color: #878788;
letter-spacing: 2px;
font-family: Brandon Grotesque;
font-weight:normal;
display:block;
border-bottom:none;
}
Don’t get it?
Moderator
t-p
(@t-p)
replace with:
#menu ul li a {
padding:0px;
margin: 0;
color: #878788;
letter-spacing: 2px;
font-family: Brandon Grotesque;
font-weight:normal;
display:block;
border-bottom:none;
}
Actually no – to removed the spaces between the menu items, look for:
#menu ul li {
float:left;
position:relative;
list-style-type: none;
margin: 0 10px 0 0;
padding:0;
}
and change it to:
#menu ul li {
float:left;
position:relative;
list-style-type: none;
margin: 0px;
padding:0px;
}