link color

How do I change my link color? For an unvisited site it is showing as dark grey but my background is black so you cant really see it.

Hey there,
I hope you’re doing well today

Are you referring to the links in your blog posts?
CSS selector may vary depending on the link you want to target.
Kindly send the URL to your website and a screenshot of the links you’d like to change.

If it is you’re talking about blog posts links, you can use the following CSS.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/* change link color in blog posts*/
.single .entry-content a {
    color: grey;
}

Best Regards,
Support

No I am talking about all the other pages.

Hey there,

Thank you for the clarification.

To be better able to assist you could you provide me with the URL for your website.

Best Regards,
Support.

No can you just assist me with how to change the link colors? The screen shot above shows the issue

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change link color on pages */
.page a{
  color:grey;
}

Best Regards,
Support

thank you