How to remove blue links on telephone numbers in microsoft edge

Hi there

Is there a way to remove the blue links on telephone numbers in microsoft Edge? I have found CSS for removing Telephone Links on the iPhone but not on MS Edge browser.

Thank you very much for your help

Hi There,

Please wrap your phone number with an <a> tag: <a href="tel:888-888-8888">(888) 888-8888</a>

Then add this custom CSS under Theme Options > CSS:

a[href^="tel:"] {
     color: #fff !important;
}

For more information, please take a look at this: https://stackoverflow.com/questions/31978346/remove-microsoft-edges-phone-number-styling

Hope it helps :slight_smile:

Hi thai

Thatโ€™s great! It is a Little bit of work, as my Website is full of telephone numbers but it works.

Thank you very much!

Glad we were able to help :slight_smile:

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