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.