BuddyBoss Home – Web Support Forums Themes Boss. theme Remove top Navigation Bar

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

    #67544
    @gregcatmull

    Hi,

    Is there so CSS code to remove the title bar which includes the profit menu etc when a member is NOT logged in? I’m creating a home page which will have the button to log in and register on so the top bar is not necessary when not logged in.

    Thanks
    Greg

    Answers

    #67660
    @anve

    Hi @gregcatmull,

    Try adding following css in child theme custom css option to remove titlebar when member is not logged in.

    
    body:not(.logged-in) header#masthead {
      display: none;
    }
    body:not(.logged-in) #right-panel {
      margin-top: 0 !important;
    }
    

    Regards
    Anve

    #67662

    Anonymous
    @

    Hi @gregcatmull, Please take a look of this thread…we have already discussed about it earlier.

    https://www.buddyboss.com/support-forums/topic/hide-header-completely/

    Regards

    #67742
    @gregcatmull

    Does that CSS code also remove title bar for mobile devices? I haven’t yet check on desktop but currently on tablet and mobile this has not worked?

    #67765
    @anve

    Hi @gregcatmull,

    The css given above works for desktop only , for mobile device add following css in child theme custom css.

    body:not(.logged-in) #inner-wrap {
    margin-top: 0;
    }
    body:not(.logged-in) #mobile-header {
    display: none;
    }

    Regards
    Anve

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Remove top Navigation Bar’ is closed to new replies.