In Magazine Basic the links embedded in the body of pages and posts are red and don't look like obvious links. How can I change them to blue and preferably underlined like typical links?
In Magazine Basic the links embedded in the body of pages and posts are red and don't look like obvious links. How can I change them to blue and preferably underlined like typical links?
There are more than 1000 themes in the WordPress Themes directory. Most people aren't familiar with every one of them, so a link to your site would help.
in your stylesheet: style.css
find:
a {
text-decoration: none;
outline: none;
color: #205B87;
}
& add beneath:
#leftcontent a
{
text-decoration: underline;
color: #009;
}That worked, thanks!
This topic has been closed to new replies.