Stylize Cmenu According To This Designer

Well, I’m new in the world of yii, and I am with this task to hand, this is the desire of the designer.


<ul>


                <li><a href="index.html" class="blightblue"> <i class="icon-home"></i> Home</a></li>

</ul>



I managed to put the css class, but do not know how to put this tag <i> this way


<?php $this->widget('zii.widgets.CMenu',array(

			'items'=>array(

				array('label'=>'Home', 'url'=>array('/site/index'),'linkOptions'=>array('class'=>'blightblue')),

),

		)); ?>



thanks

got that way


<?php $this->widget('zii.widgets.CMenu',array(

                        'encodeLabel'=>false,

			'items'=>array(

				array('label'=>'<i class="icon-home"></i>Home', 'url'=>array('/site/index'),'linkOptions'=>array('class'=>'blightblue')),