BuddyBoss Home – Web Support Forums Themes OneSocial theme Activity Feed Styling – background color

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

    #66374
    @costyclan

    I would like to change activity feed styling to have white background as it shows on Mobile?
    See attached screenshots comparing desktop to mobile.

    Answers

    #66414
    @anve

    Hi @costyclan,

    Try adding following css in child theme custom css option.

    @media screen and (min-width:481px){
    body.activity #buddypress .activity .activity-content {
    background-color: #fff;
    }
    body.activity #buddypress .activity .activity-content .activity-header, body.activity #buddypress .activity .activity-content .activity-inner {
    padding: 7px;
    }
    }

    Regards
    Anve

    #66549
    @costyclan

    perfect. thank you

    #66550
    @costyclan

    @anve could I also have code to make update area background white also as per mobile styling (see attached screenshot)

    #66568
    @anve

    Hi @costyclan ,

    Try following css and apply in custom css code of child theme.

    
    @media screen and (min-width:481px){
    .activity #whats-new-form {
      background-color: #fff;
    }
    .activity #item-body .item-list-tabs {
      background-color: #fff;
      padding: 4px 0 !important;
    }
    .activity .buddypress-content #item-nav #object-nav {
      background-color: #fff!important;
    }
    }
    

    Regards
    Anve

    #66754
    @costyclan

    sorry @anve, that didn’t seem to work.

    #66755
    @anve

    HI @costyclan ,

    The css does not seem to be applied .Please try uploading through simple custom css plugin.

    Regards
    Anve

    #66756
    @costyclan

    thank you @anve, I added code and got it working but decided against changing color in the end.

    #66759
    @anve

    Hi @costyclan,

    okay . 🙂

    Regards
    Anve

    #69025
    @costyclan

    @anve I have a couple of issues with update area and media area (i use rtmedia plugin) where the background is white and should be #f9f7f6
    see attached

    #69102
    @anve

    Hi @costyclan,

    Please remove the following code from custom.css file , that is interfering with the styling.

    
    .rtmedia-container {
        background: #fff !important;
        padding: 3% 0 !important;
    }
    

    Regards
    Anve

    #69130
    @costyclan

    fixed. thanks again @anve

    #69131
    @anve

    Hi @costyclan,

    Great 🙂 , I’ll close this topic now . Please create a new for any further questions.

    Regards
    Anve

Viewing 13 posts - 1 through 13 (of 13 total)
  • The question ‘Activity Feed Styling – background color’ is closed to new replies.