Tagged: enfold, sticky mobile menu
I got my mobile header to be sticky using the Quick CSS code below, however, it keeps tucking the top of content below the header whenever I try it. This means that the sticky mobile header is cutting off part of the content before I even scroll down.
Test Pages: http://c62.aaa.myftpupload.com/
Any idea on what I’m missing CSS to fix this?
.html_header_top.html_header_sticky #header {
position: fixed !important;
}
@media only screen and (max-width: 767px) {
.responsive #main {
padding-top: 90 !important;
}
}
Thanks
Hi Jon!
Please add following code to Quick CSS
@media only screen and (max-width: 767px) {
.responsive #top #main { padding-top: 82px!important; }}
Cheers!
Yigit
Worked great for me, thanks!!!!