By Mireille Liong on Tuesday, 20 March 2018
Posted in Voyager
Replies 3
Likes 0
Views 824
Votes 0
Hi,

How can I make sure that the links are automatically are blue. Right now it's very unclear to see links: https://going-natural.com/natural-hairstyles/2207-dreadlock-styles-from-patrick-marcelino-from-casual-to-hot
This is the standard behavior for Voyager template. If you need to tweak the color, you can always add the custom css codes into the custom css file,

[gist]
body a, body .uk-link {
color: blue !important;
}
[/gist]
·
Wednesday, 21 March 2018 00:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you this worked but I don't see the underline. Do I miss something?
·
Wednesday, 21 March 2018 01:26
·
0 Likes
·
0 Votes
·
0 Comments
·
You can try this following custom css code :

If you would like to all the link show the underline, you can use this.

body a, body .uk-link {
text-decoration: underline !important;
color: blue !important;
}


If you would like to all the link show the underline on the article content only, you can use this.

body .tm-article-content a {
text-decoration: underline !important;
}
·
Wednesday, 21 March 2018 10:19
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post