How to change links color?

How to change links color?

This is an automated message to notify you that your thread was posted in the wrong forum, and it has been moved to the correct place. A member of our team will be happy to reply just as soon as your thread is up. How support works.

For support, please post all questions in the Support Forum.

For peer to peer conversations with other Themeco customers about tips, customizations, or suggestions you are welcome to use the Peer to Peer (no official support provided here).

For Design & Development, Marketing & Media, and Hosting & Optimization discussions you are welcome to use the General Forum to discuss with fellow Apex members about non Themeco related topics. Please keep this in mind in the future.

Thank-you!

Hi There,

You can go to X>Theme Options > Typography for the page links

And Theme Options > Header for Navbar Links.

Hope it helps

I mean external link for example to youtube or instagram.

Hi,

You can add an inline style to your link.

eg.

<a style="color:red;" href="youtube.com">My Video </a>

Can you provide us the url of the page where your link is visible.

Thanks

Thank you guys,

On the bottom of this page

you see sentence: YOU CAN BUY CRUZEE ON AMAZON
It’s is a hyperlink and I want it to be blue. In fact, I want all of links like that to be blue.

Hi There,

This block on your custom CSS should work,

body.blog a,
body.single-post a {
    color: #00255;
}

The problem with that is invalid hexadecimal value, that should have 6 digits.

Do you mean all your external links to Amazon? If so, please add this custom CSS instead:

a[href*="http://amzn.to"] {
	color: blue;
}

Hope it helps,
Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.