Hi friends

Can we change color for anchor link in content page.

I know we can do that in Normal HTML page.But i give class

name for anchor link and apply css for changing color

<a class ="gridlink" href="javascript:void(0);" onclick="ShowEditContact('divEditContact',this,event,'250','## DataItem.ClientId ##');"> Edit</a>


Css for my page

a.gridlink:link {
text-decoration:'underline';
color:Blue;
}
a.gridlink:visited {
color:Green;
font-style :italic;
}
/*a.gridlink:hover {

text-decoration:'underline';
color:Green;
}*/

a.gridlink:active {

color:Green;
font-weight:bold;
}

I hope reply would be appreciated

Thanks