BuddyBoss Home – Web Support Forums Themes Boss. theme Remove sticky header on mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #64413
    @autobizchris

    Is there anyway to make the mobile header static so it does not remain at the top of my screen on mobile phones?

    I’ve tried to hide it via CSS but it appears the code is only being injected at a certain device widths and overrides my CSS.

    Answers

    #64463
    @anve

    Hi @autobizchris,

    Try adding following css in custom css option of child theme.

    
    @media screen and (max-width:479px){
    #mobile-header {
      position: static!important;
    }
    #inner-wrap {
      margin-top: 0!important;
    }
    }
    

    Regards
    Anve

    #64611
    @autobizchris

    Worked like a charm. Thank you!

    #64635
    @anve

    Hi @autobizchris,

    Great 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Remove sticky header on mobile’ is closed to new replies.