How to change the colour of a quick link when hovered over

Matthew T_
Giga Contributor

Hi community!

 

Looking for some help in amending the colour of the quick links on our portal. The initial colour of the link is ok and I know how to change that but when hovered over, it goes black... I'd like to know if this can be changed? I've been through all of the colours in the branding editor but can't seem to find where to change it...

 

This is before I hover the cursor over the link which if fine

find_real_file.png

 

This is when I hover over the link and would like to change this colour

find_real_file.png

 

Any help would be appreciated! Thanks.

1 ACCEPTED SOLUTION

Michael de Boer
Giga Guru

In the widget CSS it says:
.text-default {
  color: $brand-primary;
  
  &:hover {
    color: darken($brand-primary, 20%);
  }
}

It will darken the text when you hover over it.
Have a look there.

Regards,

Michael

Regards,
Michael

Please mark the suggestion as helpful/like, if you find it useful to you or others who wants to refer similar content.
Please mark the solution as correct, if the answer provided has resolved your query.

View solution in original post

4 REPLIES 4

Michael de Boer
Giga Guru

In the widget CSS it says:
.text-default {
  color: $brand-primary;
  
  &:hover {
    color: darken($brand-primary, 20%);
  }
}

It will darken the text when you hover over it.
Have a look there.

Regards,

Michael

Regards,
Michael

Please mark the suggestion as helpful/like, if you find it useful to you or others who wants to refer similar content.
Please mark the solution as correct, if the answer provided has resolved your query.

rubina khatun2
Tera Expert

in the widget's CSS section you can define the color 

.text-default {
  color:color_code ;
  
  &:hover {
    color: color_code;
  }
}

 

Regards

Rubina

Matthew T_
Giga Contributor

Thanks both, will give this a go!

Hi Matthew

please mark my comment  Helpful if it has solved your query.