Find this in /wp-content/themes/{themename}/style.css on line 343
#sidebar h2 {
margin:5px 0 0;
padding:0;
}
add this line within the brackets
color: #000;
which turns the white to black. You can make it any color you want
how would this code look if color: #000 was in the brackets?
not sure i understand how to add that link within the brackets.
thanks!
@cocodrillo
that is not a link, that is css code:
the result of adding this css code into the brackets would look like:
#sidebar h2 {
margin:5px 0 0;
padding:0;
color: #000;
}
how to do it?
go to ‘admin’ ‘appearance’ ‘editor’ and select your style.css from the list at the right.
search for #sidebar h2 – and type the new code where the example shows.
press the ‘save’ or ‘update’ button. that is all.