Question

I have this display column tag

<display:column property="geoRegion" sortProperty="geo_region" title="Geographical Region" sortable="true">

The sortable link appears in blue color which does not go well with my page. How should I change the color of this font?

Was it helpful?

Solution

Just set in your CSS

a {
   color:#000; /*value of the color that you want*/
}

You can complement the a tag to be more specific. Depends on how it renders the html you can place some like #table tr td a

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top