How can we pull the page down 20px only on desktop?
See here >>> https://ibb.co/x36hbSJ
As you can see the color section has gone up under the header.
Hey whdsolutions,
Thank you for the link to your site, this issue is dur to your top padding, it looks like a custom value:
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 240px;
}
It looks like 260px would be correct.
Best regards,
Mike
Hi,
Ok, try wrapping it with a media query like this so it only works on desktop:
@media only screen and (min-width: 768px) {
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 260px;
}
}
Best regards,
Mike
Still the same on mobile when we add this :-(
Admin details below if you want to fix
Superb thank you!
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike