Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1325982

    Joao
    Moderator

    Hi There,

    I have updated your code as Rupok recommended above and it seems to be ok now.

    Let us know if you need further assistance.

    thanks

    #1326073

    m185
    Participant

    THanks you, on desktop version its all ok . but i still have the same problem on mobile version, when i scroll down makes a jump and overlays on body content.
    thanks you very much .
    great suport!!!

    #1326584

    Rue Nel
    Moderator

    Hello There,

    Thanks for the updates! It overlays the content because your navbar is positioned as fixed in mobile screen. If you do not want it to overlay on the body content, please remove this code from the customizer:

    @media (max-width: 979px){
        .x-navbar-fixed-top {
            position: fixed;
        }
    }

    Please let us know how it goes.

    #1326918

    m185
    Participant

    Sorry but i want it fixed on mobile too. When you scroll down in a mobile device makes a jump and eats part of body content, thats its what i cant fix.
    Thanks you.

    #1326993

    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    @media (max-width: 979px) {
    body.x-navbar-fixed-top-active .x-navbar-wrap {
        height: 47px;
    }
    }
    

    Hope that helps.

    #1327145

    m185
    Participant

    Now its all ok , thanks you very much!!!

    #1327301

    Joao
    Moderator

    Glad to hear it,

    Joao