This topic has 8 replies, 3 voices, and was last updated 6 years, 3 months ago ago by Olga Barlow
Hello,
sorry for the silly question, but I can’t find an option to change the hyperlink color.
Hello,
You can change “Main Color” in Theme Options > Styling > Content.
Feel free to ask if you have any other questions.
Regards
This does not change the link colors for my site. I have it set to blue, but the hyperlink color (in the posts and other texts) is black (the text is grey).
Hello,
Use the custom to change the links for the post titles (Theme Options > Styling > Custom CSS)
a:hover {
color: #0162b2;
}
Also, remove the custom CSS from the home page to change the red color to default from settings http://prntscr.com/keb448
Regards
Thank you, but the hover option only changes the color when mouse is over the link. I’d like to have the links blue and underlined (old style 🙂 ) so they are obvious to the visitor. This is very important for posts, because they are mostly advices and tutorials.
Found this in the CCS:
a {
text-decoration: underline;
cursor: pointer;
color: #0162b2;
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
…but it changes every link to underlined, including headings.
Hello,
Do you want to change the style of the links in the post content? Then use the following custom
.content-article a {
color: #0162b2;
text-decoration: underline;
}
.content-article a:hover {
color: #1e1e1e;
}
Because menu, product title, categories, brands – all these elements are also links and you can’t change the links decoration using global a tag.
Regards
Thank you very much, that did the trick. But it would be nice if there was an option to change the look of the links.
Is the custom CSS preserved after theme updates?
Hello,
I passed your request about links color to our developers. Custom CSS won’t disappear after theme update.
Regards
You must be logged in to reply to this topic.Log in/Sign up