Skip to main content
Nintex Community Menu Bar
Solved

Hyperlink color on List View

  • October 22, 2018
  • 3 replies
  • 21 views

Forum|alt.badge.img+10

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

3 replies

Forum|alt.badge.img+10

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.


Albarghouthy
Forum|alt.badge.img+16
  • Scholar
  • Answer
  • October 22, 2018

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


Forum|alt.badge.img+10

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