Does anybody have suggestions on how to change the hyperlink color on a list view? We created a custom form template but that didn't work. I'm thinking that particular view has different css to change but I'm not sure where.
Thank you in advance.
Does anybody have suggestions on how to change the hyperlink color on a list view? We created a custom form template but that didn't work. I'm thinking that particular view has different css to change but I'm not sure where.
Thank you in advance.
Best answer by Albarghouthy
Hi,
I just tested it quickly, you can add the following to your Theme.css file:
.hyperlink.static
{
color: blue;
}
**IISRESET is required
Or you can use a script on the form/view level to change the color
<script>
$('.hyperlink.static').css("color", "blue");
</script>
HTH
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.