BuddyBoss Home – Web Support Forums Themes BuddyBoss theme Disable or Hide Leave Group button

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

    #49147
    @palmdoc

    I am using only Private forums and I found a solution using the custom.css

    * Hide Leave Group */
    .group-button.leave-group{display:none;}
    .buddypress div#item-header div#item-header-content #item-buttons {
    height: 0px;
    }

    But it works only on full browser but not on the mobile theme where I can still see it. Any clues?

    Thanks

    Answers

    #49152

    Anonymous
    @

    Hi @palmdoc, please add those css codes like this way:

    
    @media screen and (max-width: 720px) {
    .group-button.leave-group{display:none;}
    .buddypress div#item-header div#item-header-content #item-buttons {
    height: 0px;
    }
    }
    

    Regards
    Pallavi

    #49486
    @palmdoc

    Hi thanks for the tip. I’m still trying to get it to work but the Leave group button is still there 🙁

    #49795

    Anonymous
    @

    Hi @palmdoc, please try this

    
    div#item-buttons.group {
    display: none !important;
    }
    

    Regards
    Pallavi

    #49812
    @palmdoc

    Thanks very much – that worked!!

    #49946

    Anonymous
    @

    🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘Disable or Hide Leave Group button’ is closed to new replies.