Trying to align div

I cant figure out where the extra space to the left of the menu,

came from, as Im trying to align the menu with the white page below it.

Thanks…

There seems to be some undesired margin being applied:

<nav id="access" role="navigation">
    <div class="menu-header-menu-container">

#access div {
    margin:0 [COLOR="#FF0000"]7.6%[/COLOR];
}

Yes, that’s the main reason. Each link also has some left/right padding on it, which will mean the first link won’t line up exactly, unless you pull the menu left with a negative margin. It’s a bit hit and miss, though, as the padding is set in ems.

thanks