Your site isn’t visible :). Have you tried using Firebug to look at the CSS for that element?
Shoot thanks, it’s up now. Yeah, I use Firebug all the time, but I can find no rule causing this to happen…
Oooh, that WAS a weird one – looks like this border:
.genesis-nav-menu .menu-item {
border-left: 1px solid #F4C48F;
display: inline-block;
text-align: left;
}
I think that’s only applying the solid line, but there’s a space to the left of it which I can see no border or margin creating….
Yeah, you’re right and it’s weird indeed. I couldn’t find it either, but this seems to hide it:
.genesis-nav-menu .menu-item {
margin-left: -3px;
}
Wow okay yeah. That’s a way to hack it. Appreciate it.