Hello,
I need to change the color of the link text from the text of the paragraph because it does not stand out (http://prntscr.com/ksn5ac).
I tried to change the general rule
a {
text-decoration: none;
cursor: pointer;
color: # 1e1e1e;
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
a: hover {
text-decoration: none;
outline: none;
color: # 8a8a8a;
}
a: focus {
text-decoration: none;
outline: none;
color: # 8a8a8a;
}
but force the color change also in the menu, the links of the footer, etc …
Which rule should I use?
I also have a problem modifying the color of the fixed menu item of the active page (http://prntscr.com/ksn8e0)
From the theme settings I can not change it (http://prntscr.com/ksn97u), I have set the color white but it is not displayed.
Greetings,
Dario