Re: Activity Stream background different for admins and groups
Thank you!
This is the function added:
`function my_activity_css_class( $class ) {
global $bp, $activities_template;
if ( $activities_template->activity->user_id == 1 )
return trim( $class .’ highlightpost-mine’ );
return $class;
}
add_filter( ‘bp_get_activity_css_class’, ‘my_activity_css_class’ );`
This is the css put with that code and the css sort of works in the activity stream but is not beautiful.
`ul.activity-list li.highlightpost-mine {
background-color:#ebf7ff;
}`
It’s late so maybe next weekend.