Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #327878

    From the post and code fix ref below, it works great on a desktop browser …though not working on ipad or nexus tablet.

    Suggestion?

    https://kriesi.at/support/topic/boxed-layout-add-space-above-header/

    .html_header_top.html_header_sticky #header.header-scrolled {
        top: 0 !important;
    }
    #327937

    Hey aribann!

    Thank you for using Enfold.

    I checked the site on tablet screen size and the header looks fine. Please provide a screenshot of the issue.

    Cheers!
    Ismael

    #328336

    It is the same problem as the original desktop issue
    iPad3 and Nexus do it in landscape (an emulator like mobile.me will not reproduce it)

    • This reply was modified 9 years, 7 months ago by aribann.
    #329355

    Hey!

    I could not reproduce the issue as well and unfortunately i do not have an actual tablet to check your website. Please try adding following code to Quick CSS

    @media only screen and (max-width: 767px) {
    #wrap_all { margin-top: 0; }}

    If that does not help, please also try

    @media only screen and (max-width: 1024px) {
    .html_header_top.html_header_sticky #header.header-scrolled {
        top: -10px !important;
    }}

    Cheers!
    Yigit

    #329399

    No joy, tried those separately and together as well

    #329405
    This reply has been marked as private.
    #329826

    Hey!

    You can contact Kriesi directly using contact form here – http://kriesi.at/contact
    I have asked Josue and Devin to take a look. They have tablets. Please kindly wait until they check your website. In the meantime, just to double check, please make sure that you have flushed browser cache on your mobile devices

    Best regards,
    Yigit

    #330058

    Hi!

    The problem is that the “header-scrolled” class never gets applied on mobile devices, that’s why the code isn’t working there, the solution would be to disable the custom top space you added on mobiles:

    .avia_mobile #wrap_all {
        margin-top: 0 !important;
    }

    Cheers!
    Josue

    #330625

    Many Thank You’s to all

    And for the explanation as well

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘html_header_top.html_header_sticky #header.header-scrolled’ is closed to new replies.