Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #381596

    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

    #381668

    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

    #388637

    Worked great for me, thanks!!!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How To Fix Spacing on Mobile Sticky Menu/Header’ is closed to new replies.