BuddyBoss Home – Web Support Forums Themes Boss. theme Option to change icons for links on wall for comments etc.

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

    #47900
    @keen

    Hi,

    I can’t find anyone asking about this before, so:

    Early user testing has shown us that the icons on the activity stream, wall etc. that are for commenting, replying, liking etc. might be better as words. It seems that the same icon is used for commenting and replies, and feedback has told us that it’s not obvious what this icon is for.

    Your BuddyBoss theme does use this method – how easy would it be to change the Boss. theme to this format?

    Many thanks.

    Answers

    #47922
    @vapvarun

    Hi @keen, you can try with following css

    
    .activity .activity-list a.acomment-reply::before {
      content: "Reply" !important;
    }
    
    .activity .activity-list a.acomment-like::before,.activity .activity-list a.fav::before {
      content: "Like" !important;
    }
    
    .activity .activity-list a.acomment-delete::before,.activity .activity-list a.delete-activity::before {
      content: "Delete" !important;
    }
    
    .activity .activity-list a.unfav::before,.activity .activity-list a.unfav-comment::before {
      content: "Unlike" !important;
    }
    .activity .activity-list a::before {
      font-family: Arimo!important;
    }
    .activity .activity-list a.buddyboss_privacy_filter::before {
      content: "Privacy"!important;
    }
    

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)
  • The question ‘Option to change icons for links on wall for comments etc.’ is closed to new replies.