Hi,
Actually, I solved the problem by changing the CSS style.
You can add the following codes to change the color back to blue (and underline)
Note that my code changes only the color of hyperlinks in the paragraphs.
If you want to change all hyperlinks color, just get rid of “p” in the first paragraph of the code.
If changing the CSS style doesn’t work, try disabling your plugin one by one.
Mine didn’t work initially and it turned out one of my plugins was the cause.
Alternatively, you can also try putting ” !important” after the code.
For example: text-decoration: underline !important;
I hope it helps!
========================================
/* unvisited link */
p a:link {
text-decoration: underline;
color: #0084b1;
}
/* visited link */
a:visited {
color: purple;
}
/* mouse over link */
a:hover {
color: tomato;
}
============================================
If you want to change the style of the links on your homepage, you can try adding (and put in underline or the color of your choice)
============================================
.home_posts a {
color: tomato;
}
-
This reply was modified 5 years, 2 months ago by Su_Ramen.