Yiibooster - Sidebar

Hello. This may be a stupid question, but what can I do to get the look of the sidebar like on printscreen1 below. I implemented yiibooster, and everything looks almost excellent, except this sidebar. In printscreen2 is my actual view. And this is my code - column2. Sorry, but i’m searching for many hours and I can’t find an answer :)Sorry for my english and thanks for help:)




<?php /* @var $this Controller */ ?>

<?php $this->beginContent('//layouts/main'); ?>

<div class="row">

    <div class="span3 bs-docs-sidebar">

        <div id="sidebar">

        <?php

            $this->beginWidget('zii.widgets.CPortlet', array(

                'title'=>'Operacje',

            ));

            $this->widget('bootstrap.widgets.TbMenu', array(

                'items'=>$this->menu,

                'htmlOptions'=>array('class'=>'operations'),

            ));

            $this->endWidget();

        ?>

        </div><!-- sidebar -->

    </div>    

    <div class="span9">

        <div id="content">

            <?php echo $content; ?>

        </div><!-- content -->

    </div>

</div>

<?php $this->endContent(); ?>



I’ve been looking for an answer to this too. I want to include a beautiful sidenav with scrollspy etc… How?

An example what I mean is here: http://yiibooster.clevertech.biz/getting-started.html

have anyone found the solution?