How To Modify Width Of Cdetailview Label

Can someone point me to an easy way to modify the width of the labels in the CDetailView? If you look at the attached picture you can see that they are wayyyy too wide.

Thanks.

4413

Screen Shot 2013-06-18 at 8.52.43 AM.png

Dear Friend.

You can register the following bit of css in view.php.




Yii::app()->clientScript->registerCss('label_th_width','

      table.detail-view th

      {

	  width:50px; 

      }

');



Default is 160px. You can adjust on that.

Thanks so much for your help!