@matthewseanmclachlan: It’s conflicting with your own customs css:
Find all the #header-top css, you will find the following:
#header-top { position: fixed; }
#header-top {
background: #ea3b36;
background: rgba(234, 53, 54, 0.7);
}
#header-top {
box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
position: relative;
}
#header-top { z-index: 99; }
Remove all that and add the following:
#header-top {
background: #ea3b36;
background: rgba(234, 53, 54, 0.7);
box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
position: fixed;
z-index: 99;
}