CMenu, how to use background images?

Hi, wanting to use background images in a CMenu so I can use hover/active to change the graphic (if there is another way I’ll change). But I can’t get the width to change from the default of about 30 pixels. Using classes to set both the link and item properties but nothing works.

This is what I’ve been trying:




'items'=>array(

     array('label'=>'', 'url'=>array('/controller'), 'itemOptions'=>array('class'=>'testClass'),'linkOptions'=>array('class'=>'testClass2'),),



Not related but thought I’d ask anyways… In the sorter is there a way to start with the arrow showing?

You can do it via css.


class_name{

   width:XXXpx;

   height:XXXpx;

   background-image:url('');

}

class_name:hover{

   background-image:url('');

}

Did that, it doesn’t work. I can’t get the width to change.