Hi there,
Can you please help… my header is covering the conent of my pages.
I have added;
.masthead {
position: absolute;
width: 100%;
}
to the global css and this appear to work fo rthe homepage but not the other pages.
thanks
Tony
Hi there,
Can you please help… my header is covering the conent of my pages.
I have added;
.masthead {
position: absolute;
width: 100%;
}
to the global css and this appear to work fo rthe homepage but not the other pages.
thanks
Tony
Hi Tony,
You have several sites in your licenses page so I am not certain which is the site in question.
For the meantime, kindly update the code to:
.home .masthead {
position: absolute;
width: 100%;
}
In case this does not help, kindly provide the site URL so that we can check.
Hope this helps.
Hi,
Tried that, hasn’t worked… sorry for got to give you the url
http://sitesample.co.uk/the-offices/
Thanks
Tony
Hi Tony,
To make it work, you can add the code below in Cornerstone > CSS only for the pages you want your header to be over the top of the slider.
@media(min-width: 980px) {
.masthead {
position: absolute;
width: 100%;
}
.x-navbar {
border-bottom: 0;
background-color: transparent;
box-shadow: none;
}
.x-logobar {
border-bottom: 0;
background-color: transparent;
}
}
Thanks
HI There,
Thats interesting, but not what I was looking for 
I don’t want the header to be on top of the content.
The content needs to be pushed down to start under the navigation
Thanks
Tony
Hi There,
Thanks for writing in again!
The issue is because of the height of the header.
You have more content height than the height given to the header.

not sure how this is coming. Please overwrite it by adding this CSS to your theme option -> CSS
.masthead {
height: auto !important;
}
Hope that fixes your issue.
Thanks
Thats fixed it thank you
Its ok… fixed it
some rogue JS found
Glad to hear that. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.