Phone Numbers Change to "links" on mobile devices

hi – I am using X Theme and cant seem to get phone number on the site from turning to links and appearing blue. Is there a way to have them remain white? They appear fine on desktop.

Hello @charliemca,

Thanks for asking. :slight_smile:

Can you please give us the access to your website in a secure note as I see under construction page on the website?

Thanks.

Im sending to you now…

Hi @charliemca,

Mobile devices convert text phone numbers to link, hence, you can just format by adding this CSS to your global custom CSS.

a[href^="tel"] {
  color: inherit;
  text-decoration: none; 
 } 

You may want to change inherit to white if it’s not taking effect.

Thanks!

That worked perfectly! Thank you again!

1 Like