<?php
$this->widget('zii.widgets.jui.CJuiTabs',array(
'tabs'=>$some-array,
'options'=>array(
'collapsible'=>false,
),
'id'=>'some-id',
)); ?>The problem I'm having is that the widget is styled by a css-file stored in the assets folder. I've read somewhere that you should never change anything in the assets folder (with exceptions of course), and that you had to copy the css file into your css folder, and then call it inside the widget. I'm not sure if this is the right approach, and if it is then what css-file should i be looking for and how should i call it from the widget once it has been copied to the css folder?

Help












