Hi, I have a requirement that one column, if a link appears, it be red and bold. I am using a skin, and it will not allow my class to shine through (color is getting overrriden by the skin) My CSS file has a "redlink: in it as below, and it is being used as the itemstyle-cssclass, but it is keeping the skin color. I am aware I could set overall link colors, but the appearance of any values in these columns is a special case, and therefore the customer wants it red. Can anyone help please?
Thanks
what the column def is:
how it renders
Thanks
from css:
.redlink
{
color: red !important;
font-weight: bold !important;;
}
what the column def is:
<telerik:GridHyperLinkColumn HeaderText="Notes" SortExpression="noteCount" DataTextField="noteCount" ItemStyle-CssClass="redlink" DataTextFormatString="{0:#;;}" DataNavigateUrlFields="Claim Number" Target="_blank" DataNavigateUrlFormatString="ClaimNoteDisplay.aspx?cid={0}" UniqueName="ClaimNotes"></telerik:GridHyperLinkColumn>how it renders
<td class="redlink"><a href="ClaimNoteDisplay.aspx?cid=78952" target="_blank"></a> </td>