In Upscale, for me to change the regular link color to blue, the footer and header backgrounds will also change to blue automatically. Is there a way to change only the links?
Thank you for your time.
In Upscale, for me to change the regular link color to blue, the footer and header backgrounds will also change to blue automatically. Is there a way to change only the links?
Thank you for your time.
Hey,
add following code to css/custom.css and change the link color:
a{
color:#333941;
}
a:hover{
color:#555b63;
}Thank you, that worked nicely. The links in post and page content are now blue. That looks much nicer.
It also changed the link color in the Recent Comments widget, but not the other widgets. Is there a way to make all of the widget links blue, OR have all of the widget links go back to normal? You can see here:
If not, I can live with it, as it is now better than it was.
Thank you for your time.
Hey,
in your style.css find
.widget li, .widget a
add the following between the brackets:
color:#555555;
Now after the previous add
.widget a:hover{
color:#yourhovercolor;}
replace yourhovercolor by your wanted hex color code :)
Thank you, Chris, but I didn't need to do that. It worked itself out already.
Good to see it's solved :)
You must log in to post.