Page 1 of 1

Bright blue font in links

Posted: Mon Oct 15, 2018 5:07 am
by EOM
I cannot seem to be able to control the color of links in a theme, could somebody please advise?

I'm using a responsive theme, with a style sheet created with Themeroller 1.3.2. There is no bright blue in the style as far as I can see. However, the Nethelp output has all links in bright blue. Could somebody tell me where this color comes from?

Also, if I import one of the predefined styles, such as Light into Themeroller, make some changes, download it and create a new style based on it, the link font becomes bright blue.

Re: Bright blue font in links

Posted: Mon Oct 15, 2018 2:28 pm
by SteveS
You need to set the a:link property.

See more here: https://www.w3schools.com/html/html_links.asp

Re: Bright blue font in links

Posted: Tue Oct 16, 2018 5:13 am
by EOM
Hi Steve,

Thank you. I what file should it be set?

I've searched the theme and the style sheet files for a:link, but I cannot find it.

Eeva

Re: Bright blue font in links

Posted: Wed Oct 17, 2018 2:27 am
by AlexFox
EOM, You're probably seeing a default value from Flare's default styles or from the browser user agent stylesheet. Just create the entry in your project CSS:

Code: Select all

a:link{color:red}
Obviously change red to your desired colour/hex/rgb value.

Re: Bright blue font in links

Posted: Wed Oct 17, 2018 3:02 am
by SKamprowski
Hi,
from the beginning of this thread I assume that it belongs to DocToHelp:
So, here is my reply for DocToHelp:
1. You may need to create your own Responsive theme
2. Then you can add the appropriate definition in its user.css file (see Steves Reply).
Actually, I never tried to change link style with ThemeRoller.

Re: Bright blue font in links

Posted: Sun Nov 04, 2018 4:46 am
by EOM
Thank you all. Specifying a:link in user.css fixed this issue.