Go ahead and change
.mainHeader nav a
{
color: #FFF;
display: inline-block;
padding: 10px 20px;
height: 40px;
text-shadow: 0px 1px 3px #FFF;
}
To
.mainHeader nav a
{
color: #FFF;
display: inline-block;
padding: 0 20px;
height: 40px;
text-shadow: 0px 1px 3px #FFF;
}
The difference is that there was top padding of 10px in this css class and now there isn’t.
EDIT: This actually breaks the alignment of the links, but is definitely the problem.
Those errors are incredibly resilient when you try really hard to find them.
What I usually do is hit F12 and start disabling css attributes of different tags, which might be related to the problem.
2
solved How do I remove the gap between the header and image slider