I found this cool code on the forum which actives sticky header on mobile devices. But it also covers my first header.
Is there an easy fix?
.html_header_top.html_header_sticky #header {
position: fixed !important;
}
@media only screen and (max-width: 767px) {
.responsive #main {
padding-top: 82 !important;
}
}
Hey!
Try this:
@media only screen and (max-width: 767px) {
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
padding-top: 80px !important;
}
}
Cheers!
Rikard
Hey Rikard!
Works great on the start page. But not on this page?
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) {
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 80px!important;
}}
Best regards,
Yigit
Beautiful! Thanks Yigit!