Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1003247

    Hey guys,
    I used your code in my Quick CSS for the header to be sticky across mobile devices.
    However, it’s cutting off the top of my sliders/banners at the top of my pages.
    See private Content for URL.

    .html_header_top.html_header_sticky #header {
    position: fixed !important;
    }
    @media only screen and (max-width: 767px) {
    .responsive #main {
    padding-top: 82 !important;
    }
    }

    #1003388

    Hey tonyshanks,

    You have to specify what value should apply, 82 won’t do anything. Please try this instead:

    @media only screen and (max-width: 767px) {
    .responsive #top #main {
        padding-top: 90px !important;
    }
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.