BuddyBoss Home – Web Support Forums Themes BuddyBoss theme New Forum Topics widget css

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

    #58282
    @george123

    How do I make this center up properly after newest update. All other widgets are aligned properly, this one is smashed to the left.

    Answers

    #58511

    Anonymous
    @

    Hi @george123,

    Please add following css in your custom css option:

    
    .widget_display_topics ul li {
      padding: 0 15px;
      text-align: center;
    }
    .widget_display_topics > ul {
      padding-bottom: 15px;
    }
    

    Regards

    #58538
    @george123

    @pallavl Thanks.. this almost worked perfectly. It aligned the forum topics widget but moved the css padding for the member login widget.

    Here is a code from TJ Chester that relates to our login widget:

    @media screen and (min-width: 721px){
    .widget-area .widget #sidebarme img.avatar{margin-top:10px;}
    aside#buddybossloginwidget-7{padding:10px 15px;}
    .widget-area .widget #sidebarme {
    overflow: hidden;
    padding: 15px;
    }

    Not sure if that conflicts. We need the member widget to be aligned correctly when logged in and out.

    Thanks again.

    #58602

    Anonymous
    @

    Hi @george123,

    Their is no conflict with our css but you can try following css , if it solves your designing issue

    
    @media screen and (min-width: 721px){
    aside#buddybossloginwidget-7.widget.buddyboss-login-widget {
      padding: 0;
    }
    .widget.buddyboss-login-widget#buddybossloginwidget-7 form {
      padding: 0px 15px 15px;
    }
    }
    

    Regards

    #58673
    @george123

    TY this can be closed.

    #58801
    @vapvarun

    Great 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘New Forum Topics widget css’ is closed to new replies.