Changing the link colors in posts to blue

Hi,
I looked at other posts to change the link color but I had no luck. I tried inputting just “blue”, then tried using HEX values and rgb(0,0,255) for blue but still no luck. I kept multiple codes in the Additional CSS customize area but I don’t know if they all cancel each other out now?

I used the following:
/Link decoration/
.service-entry a {
font-size: 20px;
color: blue;
text-decoration: underline;
}
/Change the color of the text in the slider on hover/
.flex-caption h2:hover {
color: ##0000FF;

.markup-format a {
color: blue;
}

Could you please guide me?
www.shindospirit.com

Thanks,
Lisa

Hey there,
Hope you’re doing well today

Could you please provide me with a screenshot of the link color that you’re trying to change?

The code below will change all your link colors to blue when you hover on them:

a:hover{
  color:blue!Important;
}

This one will make the link colors blue without hovering on them:

a{
  color:blue!Important;
}

Just add and save the code(s) to Appearance > Customize > Additional CSS. You can edit the color and change it to whatever you wish to have.

I hope this helps :slight_smile:

Best Regards,
Support

Hello,
Thanks for your speedy response!
The yellow links that I would like changed are only on the blog pages like the examples you see in the attached.
That particular address is in case you need it http://www.shindospirit.com/discover-childrens-day-japan/
I don’t want to change it to blue on any other page because it wouldn’t look good with the current backgrounds.
Is there a way to selectively change it to blue (without hovering) on only the blog pages?

Thanks,
Lisa

Hi there,
Thanks for keeping in touch with us.

The CSS below should be specific to your posts:

.single-post .container a:hover{
  color:blue!Important;
}

.single-post .container a{
  color:blue!Important;
}

I hope this helps :slight_smile:

Best Regards,
Support

It sure does help! Much better and much appreciated. Thanks!

Regards,
Lisa

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support