Re: Activity Stream background different for admins and groups
After some help on other issues, this one is back to the forefront. The suggestion for a div tag seems reasonable, except the particulars are not very clear.
This was done in the forums using functions:
`function my_forum_is_first_post() {
global $topic_template;
if ( $topic_template->post->post_position == 1 )
return true;
return false;
}
function my_admin_post() {
global $topic_template;
if ( $topic_template->post->poster_id == 1 || $topic_template->post->poster_id == 117 || $topic_template->post->poster_id == 126 )
return true;
return false;
}`