Skip to main content

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.

The above response is the exact same code that was used to create a custom theme.

It appears as of now that it is not functioning.   The hyperlink is on a Read Only List View, not sure if that matters.

 

I've also attempted to update the system on the Body property of that column as well.  The theme being used is the Sky theme so the hyperlink color is an extremely light grey so we are looking to make it darker.


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


Thank you Mustafa!  The script expression worked!    The CSS changes did not.


Reply