Totara Learn Open Discussions

Font Color of course name in Featured links block

 
Pinky Garrido
Font Color of course name in Featured links block
von Pinky Garrido – Sunday, 30 January 2022, 8:47 PM
 

Hi,


Does anyone know how to revert the font color of the course name in the Featured links block?



They were originally white but turned black.


Thank you!

Dave Wallace
Re: Font Color of course name in Featured links block
von Dave Wallace – Monday, 7 February 2022, 2:05 PM
Gruppe Totara

Using either a custom Theme or the custom CSS settings for a currently applied Theme, you can override the colour value for that title. The specific CSS selector you need is:


.block-totara-featured-links-layout>div .block-totara-featured-links-content h3 {

  color: yourNewColor;

}


If you also need to target more selectors, your best option is to use a tool like Firefox or Google Chrome devtools "Inspect Element" on individual elements, to find their selectors, and then change values from there.

Cheers,

Dave