How to change a link color in only one place of a page

Hi,

In the contact page https://tecnobiz.com.ar/desarrollo/contacto/ I would like to change the color of the WhatsApp link to green ("[x_icon type=“phone-square”] Ponerte en contacto por WhatsApp haciendo clic aquí".

I put an ID: “whatsapp”
Then add this to the CSS of the page:

#whatsapp {
color: green;
}”

But it do not work: what can I do?

Thanks!

Hi,

And the original color red for hoover.

Thanks

Hi Gabriel,

Please add this code in the text element’s Element CSS:

$el a {
  color: #1ebea5;
}

$el a:hover {
  color: #1ebea5;
}

Here are some related links for further reading:

Hope this helps.

Hi Jade,

Now is working fine.

Thank you!

You’re welcome, Gabriel.

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