Cgridview Sort Header Color

When a CGridView column is sortable, the header is a link. How can you set the color of this link as the standard color attribute of the headerHtmlOptions no longer applies.

there is no property named headerHtmlOptions on CGridView

you can override the default css styles


.grid-view .sort-link {

  color: blue; // color value

}