Change Theme

Hello Everyone!!!

I have created a website using default YII theme(blue color theme).

Now I want to change the default theme to Shadow Dance theme from this source : http://www.webapplicationthemes.com/shadow-dancer-yii-framework-theme/

Can you please guide steps for applying theme in my site at speedy way because I dont want to waste so much time for that.

Appreciate your help…

http://www.yiiframework.com/forum/index.php/topic/29619-changing-theme-on-the-fly/ This should work for you.

EDIT:

I’ve just installed this theme to check it and it works beautifully. All you need to do is put it in theme folder on your server and then change in config/main.php


return array(

	'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',

	'name'=>'Site Name',

        'theme'=>'shadow_dancer',

	// preloading 'log' component

	'preload'=>array('log'),

        (...)



Thanks. ^_^