Customizing Yii - Booster Color Theme

How can I modify the colour theme of Yii-Booster? I want to make it look according to my client’s requirement.

http://stylebootstrap.info/

http://www.lavishbootstrap.com/#

This may be a very newbie question, sorry.

What should I do with the file I download from http://stylebootstrap.info?

Should I replace the bootstrap.css in extensions/bootstrap/assests/css?

Thanks

German

I am also having same problem,

I want to have multiple color themes without changing anything in Yii booster.

I think, there should be way to force Yii booster pic bootstrap from theme directory

Please share if someone already have done that

-Shiv

In my config.php I have this:


    	'bootstrap' => array(

        	'class' => 'ext.yiibooster.components.Bootstrap',

        	'coreCss' => false,

    	),



That tells YiiBooster to not publish the core css (bootstrap.css).

You can add other lines to it - see the YiiBooster component.

In my theme main layout:


<meta charset="utf-8">

<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->theme->baseUrl;?>/css/bootstrap<?php echo (!YII_DEBUG ? ".min" : "") . ".css"; ?>"/>

<title><?php echo $this->pageTitle; ?></title>



That should take care of that problem.

[color="#006400"]/* moved from General Discussion */[/color]