What is the correct code for doing this so that as the page is scrolled, the page content does not appear in that area? (see link)
#wrap_all {
margin-top: 6px;
}
Hey!
Try adding this code to the Quick CSS:
.html_header_top.html_header_sticky #header {
top: 0;
}
Cheers!
Josue
that did not change anything …that i could notice
Hi!
Are you referring to this? if so, the code i provided should work, try purging your caching/minification plugin.
Best regards,
Josue
yes exactly what i was referring to!
i:
added your code
turned off plugin
your code simply eliminates the 6px box border at the top
is there a way to have that border and eliminate what you reference in your screen grab?
Hi!
That’s not possible, one thing you can do however is remove that space only when the page is being scrolled, use this code instead:
.html_header_top.html_header_sticky #header.header-scrolled {
top: 0 !important;
}
Regards,
Josue
Thats beautiful thanks for thinking of that!
You are welcome, glad to help :)
Regards,
Josue