easy solution for you guys (but hard for me)
-
So– I want the default hyperlink color to always be #06d5d5.
Boom. That is all!
As always, thank you so much. You all really are great to me.The blog I need help with is: (visible only to logged in users)
-
Hello @neatandclean,
To do that, just change this custom CSS you have:.entry-title, #site-navigation a, .widget .widget-title { color: #8b99a5 !important; }To this:
.entry-title, #site-navigation a, .widget .widget-title { color: #06d5d5 !important; }and to always keep it that way, change the hover and visited colors from your custom CSS:
.entry-title a:hover { color: #06d5d5; } a:visited { color: #06d5d5; text-decoration: none; }Hope this helps :)
-
I’m so sorry — I wasn’t clear — I meant the links that are within a post or a page. Example: https://techmania411.net/lets-get-to-the-bottom-of-this-once-and-for-all/ (see the link which says “data on Twitter”)
I appreciate how the hover color is currently #00fef8 but I hate how the default link within a post or a page is always this low-contrast navy blue (preset(??)) color which I always have to change manually.. ….. Instead of the low-contrast blue I’d love #FFF9C0 with the current #00fef8 hover
-
Please try using:
.entry-content a { color: #FFF9C0; } .entry-content a:hover { color: #00fef8; }
- The topic ‘easy solution for you guys (but hard for me)’ is closed to new replies.