I Can't Use Bootstrap Theme

Good morning!

I downloaded bootstrap extension and followed these instructions to install it:

How to install Bootstrap

My directory structure is as follows:

application

------------protected

-------------------------extensions

------------------------------------bootstrap (I unzziped bootstrap directories here)

------------themes

-------------------------bootstrap(I copied css and view directories here)

But I can’t use the theme. I get a web page without style.

Bootstrap menus and navbars works, but without the style.

Anyone can help me?

Regards.

+1

Downloaded the widget, made all the instructions. But in the statement, and did not find how to connect js and css to the template from the folder \protected\extensions\bootstrap\assets\

Google Google and not on Google. Does not kick, Yii just started picking.

Yo ho ho

in \themes\bootstrap\views\layouts\main.php include between tag <head>

<?php Yii::app()->bootstrap->registerAllCss(); ?>

try install again.

in /protected/config/main.php

put: ‘theme’=>‘bootstrap’,

example:

return array(

'basePath'=&gt;dirname(__FILE__).DIRECTORY_SEPARATOR.'..',


'name'=&gt;'My Web Application',


    'theme'=&gt;'bootstrap',

well, the new version bootstrap has an error, in yii.css (extension/bootstrap/assets/css/yii.css) replace import with: @import url("../less/mixins.less");

but I don’t think that’s the problem.

seobot, can you post your config,please?

Regards.

Thanks, it was my problem in any case, and this tip solved it.

I do have, however, one last bug with the bootstrap extension. All widgets render fine, except for the thead of the TbGridView widget. It renders the standard yii light blue. When I inspect this element with Firebug, it shows that it uses the screen.css file. The rows, on the other hand, render fine.

Any ideas here?