- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2022 02:32 AM
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
This is when I hover over the link and would like to change this colour
Any help would be appreciated! Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2022 02:38 AM
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
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2022 02:38 AM
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
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2022 03:52 AM
in the widget's CSS section you can define the color
.text-default {
color:color_code ;
&:hover {
color: color_code;
}
}
Regards
Rubina
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2022 06:52 AM
Thanks both, will give this a go!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2022 03:09 AM
Hi Matthew
please mark my comment Helpful if it has solved your query.