Tagged: sticky header
Hi, I have activated the sticky header in the Enfold theme settings, but the header is not being displayed when I scroll down the page.
I’m including a link to the home page below.
Thanks, Richard
Hey Richard,
Please, to check the settings, may you share with me your WP credentials?
Best regards,
John Torvik
Thanks John,
I am sharing login details in the private section below.
Hi, I’ve had to turn off the sticky header temporarily as it was giving me some problems.
When you take a look at this, please turn it back on in the theme settings.
You’ll see that when activated the sticky header is not remaining on screen when you scroll down the page
and is behaving strangely when you scroll back to the top.
Thanks, Richard
Hi, I’ve now moved the website to its live url, so am resending the live url and WordPress admin below:
Hi Richard,
It’s this rule in tonic analytics
body, #socket {
-webkit-transform: translateZ(0) !important;
}
that does not allow position:fixed to work as it should.
For the sticky header to work it has to be
body, #socket {
-webkit-transform: none;
}
but then you have to see if analytics still works like it should.
Let us know if this was helpful.
Best regards,
Victoria
Thanks Victoria, this is great!