Setting Active Property (Bootstrap.widgets.tbmenu)

Hello,

My first post having spent a wonderful month learning Yii.

I’m using the Bootstrap TbMenu (bootstrap.widgets.TbMenu) on this site:

http :// icp.alcoholconcern.org.uk/1

But I can’t work out how to change the active colour for the currently selected menu on the left.

Can anyone point me in the right direction?

Thanks in advance, Rob

You can use fireBug to find the appropriate css class for that block, then change the some css elements as you wish.

A big thanks Shahcheraghean. Yes, playing with the CSS did it.

I added:


.sidebarleftactive #menuleft

{

        color: white;

        background-color:#D76327;

        text-decoration:none;

}

Rob