Is there a way to display a hyperlink phone number in white without it switching to the theme color (red)?
In the past I thought I did it this way but I’m not having luck:
“a href=”tel:1-415-555-1212″>+1.415.555.1212”
I don’t want to override the hyperlink color for the rest of the theme, only for this phone number element.
Thank you!
Rob
Hey goldengate415,
Please try creating your link like this with the id “tel”
<a id="tel" href="tel://1-555-555-5555">+1 (555) 555-5555</a>
and use this css in your quick css, or your child theme stylesheet:
a#tel:hover {color:black;}
a#tel {color: yellow;}
In this example the regular color is yellow, and on hover is black. Please adjust to suit.
Best regards,
Mike
Perfect, thanks Mike!!!!
Rob