Hi!
How to change the color of links only inside the article from black to orange or classic blue, without affecting the link, for example, in the category name? What do I need to enter in override.css?
Thanks
Hi!
How to change the color of links only inside the article from black to orange or classic blue, without affecting the link, for example, in the category name? What do I need to enter in override.css?
Thanks
Ninja, if I understand correctly to change color of links in content I have to add to override.css:
a:not(.btn) {
color: #009df7;
text-decoration: none;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
}
Is it correct?
Hi,
I want to change color of link in article: http://allcrete.ru/vne-formata/test2 , but don't want to change color of links for category and before-after buttons.
saguaros, Initially, I did this: 1. I changed the color of all links to blue, 2. For the link of the category name and buttons "forward-back" return the color that was by default: # 444
/ change color of links /
a:not(.btn) {
color: #0075b8;
text-decoration: none;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
}
/ return color of link for category name and buttons forward, back/
.category-name > a {
color: #444;
border-bottom: 1px solid #f8c803;
}
It works the way I want. But I'm not sure if this is correct.