Conversation block custom class

Permalink
Hey,

How can I give the conversation block a custom class?
The code below in the page_theme.php does not work.
public function getThemeBlockClasses()
    {   
        return array(
            'conversation' => array(
                'mycustomclass',
            ),
        );
    }

nesoor
 
MrKDilkington replied on at Permalink Best Answer Reply
MrKDilkington
Hi nesoor,

I don't think "conversation" is the block handle for the Conversation block.

Try "core_conversation" or "conversation_message".
nesoor replied on at Permalink Reply
nesoor
That works! thanks! :)