How to add extra class to the particular comment?

Hi,
Someone knows how to add my style class to a particular comment from the plugin ?
Like on the screen:
Invoking an event?
DiscussionController_BeforeComment... ?
Thanks
0
Best Answer
-
R_J Admin
public function discussionController_beforeCommentDisplay_handler($sender, $args) { if ($args['Comment'] whatever) { $args['CssClass'] .= ' MyExtraClass'; // Could also be: // &$args['CssClass'] .= ' MyExtraClass'; // Never sure about that...
3
Answers
It worked, thanks