Picture of Tamieka Geter
Hyperlink color in a text component
by Tamieka Geter - Thursday, 27 April 2017, 2:51 AM
 

I am using the Adapt Authoring tool. The hyperlink color in a text component displays as black and not blue. Is there something I need to do to get the hyperlink color to be blue in a text component? The hyperlink color displays properly when in the body of a block.



Picture of Ignacio Cinalli
Re: Hyperlink color in a text component
by Ignacio Cinalli - Thursday, 27 April 2017, 12:56 PM
 

Hi Tamieka, in project settings > Custom CSS/LESS code you can add:

E.g

.component {
    .component-body {
        a {
            text-decoration: none;
            color: #36cde8;
            &:hover {
                color: #34bee0;
                text-decoration: underline;
            }
        }
    }
}

 Hope this helps.

Picture of Tamieka Geter
Re: Hyperlink color in a text component
by Tamieka Geter - Thursday, 27 April 2017, 1:36 PM
 

That helped... thanks!