+1  A: 

This would be a CSS issue. I see on your site the css:

#navback {
    background-color: #121621;
    margin-bottom: 10px;
    height: 1%;
}

change that to this:

#navback {
    background-color: #121621;
    margin-bottom: 10px;
    height: 20px;
}

and you should be golden :)

Kenneth Reitz
Thanks. Your Golden!I thought I had some reason for putting 1% there. (maybe to fix some ie thing? - Im just starting to learn css and all that so.. )Anyways thanks a bunch!
Fifth-Edition
my pleasure! good luck with everything!
Kenneth Reitz