BuddyDev

Search

[Resolved] Recent Visitors For BuddyPress Profile

  • Participant
    Level: Initiated
    Posts: 10
    anonim on #12937

    the last visitors do not appear in the center, how can I make it display correctly?

    https://image.ibb.co/kYr3rm/2018_01_16_18h57_59.jpg

    thank you very much, you do an excellent job!

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2935
    Ravi on #12943

    Hello anonim,

    Thank you for posting, please point me to the site so that I could help.

    Thank you
    Ravi

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #12946

    Hi,
    Like Ravi Said, Please point to the site with a temporary account. It will most probably need a css update(1-2 lines).

    Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 10
    anonim on #12966
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #12967

    Hi,
    No problem.

    Can you please provide me a temporary login(Please use the Private reply option for sharing the login details).

    Thank you
    Brajesh

  • Participant
    Level: Initiated
    Posts: 10
    anonim on #12968
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #12969

    Thank you.

    Here is the problem. You have a line in the css

    
    
    #buddypress #item-header img.avatar {
     float:left;
    }
    
    

    This is causing the problem.

    Solution:-

    We override the float property for the recent visitors avatars.

    
    #buddypress #item-header .recent-visitors img.avatar {
      float:none;
    }
    
    

    That will fix it.

    Hope that helps.

    Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 10
    anonim on #12970

    it works!
    but how can i make the space between avatars disappear?
    and ..and they are not in the center 🙂
    https://image.ibb.co/j4pSK6/2018_01_17_13h32_11.png

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #12975

    Please update the above css and set the margin right to zero as shown below.

    
    #buddypress #item-header .recent-visitors img.avatar {
      float:none;
      margin-right: 0;
    }
    
    

    Hopefully that should do it.

    Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 10
    anonim on #12976

    thank you very much!

You must be logged in to reply to this topic.

This topic is: resolved