If you want to add space to the menu/header widget area, you could take a look around line 701 in your css file and change the top margin (the first ‘0’) to whatever number you want. Here is an example of 45px added to the top margin –
#header .widget {
margin: 45px 0 15px;
overflow: hidden;
}
Is that what you were talking about?