How customize the panels style in CJuiAccordion extension ?

Hi everybody,

I’m newbie with Yii ^_^.

I use CJuiAccordion extension for my future Website. I found it great as extension :D.

Now I want to change the height of the first Panel with HtmlOptions but I couldn’t :s.

I tried it’s not work for me.


'htmlOptions'=>array(

		'class'=>'Name of specific class which I want to change extracted from Firebug'

		'style'=>'450.67px',

It put the style in the global Div which contain all panels :s.

So how to customize the panels style ?

Thank you in advance

You need to write:


'htmlOptions'=>array(

		'class'=>'Name of specific class which I want to change extracted from Firebug'

		'style'=>'height: 450.67px',

as you would normally write @style attribute in HTML code.

I did it but it doesn’t work for me =( ?

any other idea ?

up