Change Hyperlink Color In Theme
-
Hello!
I noticed that all of my hyperlinks in my posts are the same color as the rest of the font, unless hovered over. How can I change it so that the hyperlinks appear as one color across every current and future post?
Example: the word Steam in the first paragraph of this post: http://geekthefout.com/overkills-the-walking-dead-launches-with-intensely-gruesome-trailer/
Thanks in advance, I am fairly new to website creation and CSS so the more detailed the better.
The blog I need help with is: (visible only to logged in users)
-
Hi,
It appears that your website uses the self-hosted version of WordPress rather than WordPress.com, which is what this forum is designed to help with. Note the difference here: https://en.support.wordpress.com/com-vs-org/
Therefore, for the best chance of help, it’s best to contact your theme developer: https://wordpress.org/support/theme/netromag
But I did have an attempt myself, so this CSS should work for you. Note that this will make all links appear as green (you can change the colour code to whatever you desire).
a {
color: #1ea61e;
}If you just want links in a post’s content to be green (and not, for example, your sidebar), this CSS should hopefully work:
.post-entry a {
color: #1ea61e;
}And if you want to change the colours, you can find different HEX codes to replace the green I used here: https://imagecolorpicker.com/
Hope this helps. :)
-
-
- The topic ‘Change Hyperlink Color In Theme’ is closed to new replies.