Viewing 2 replies - 1 through 2 (of 2 total)
  • Ben,

    My guess is is has something to do with your navigation bar top margin. Look in your style.css and find this:

    #navigation {
    	margin:69px 0;
    }

    The 69px is your top and bottom margin, which is evident looking at your site. You can decrease the 69px to reduce the margin. Be aware that if you do so, it will modify the top AND the bottom margin at the same time.

    You can write our navigation bar style like this to give you control over the top and the bottom individually:

    #navigation {
    	margin:69px 0 69px;
    }

    The left value is for the top, the middle value is your left and right, and the right value is your bottom.

    Good luck!

    Thread Starter BenCurry

    (@bencurry)

    I’ve fixed it.

    Thanks for the help

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘inove 200 header problem’ is closed to new replies.