Specific link color change - override global settings

Hi,

I am in need some CSS help. As you can see in the first screenshot below, the link for the email address is the same color as the background. I want to keep the global link color that same blue, but want to change the link color in specific areas to WHITE. What is the CSS to use in this instance?

My second question is similar. The phone number you see is white on desktop version, which is great. But when viewed on a mobile device, it turns blue. This works for every other place on the website, but it needs to stay white when viewed on mobile. Can you please provide the CSS to keep this WHITE?

2nd question: http://dev.bearcreekpediatricdentistry.com/dr-dixon-pediatric-dentist/

Hi,

To make your links white, add a class to your text element (where you have the links on)

For example, add my-text

Then add the code below in Theme Options > CSS

.my-text a {
    color:#fff !important;
}

Hope that helps

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