When the document width is greater than 760px, I have a header with a height of 60px. The body appears just below the header with no issues. However, when the width becomes smaller, the height of the header increases to two lines (120px) causing the body to be partially hidden at the top.
How can this issue be resolved?
Here is the code being used:
.main_header {
width:100%;
height:auto !important;
background-color:#F2F2F2;
border-bottom:1px solid #CCC;
position:fixed;
top:0px;
z-index:100;
}
.main_body {
margin:70px auto;
}
Please note that the page is responsive.