Remove Blue Hyperlink For Phone Number In Email
Similar to this question, How do I remove the blue styling of telephone numbers on iPhone/iOS? I tried the suggestion using following code but it does not work: [href^='tel']{
Solution 1:
if this is happening on gmail app, you can use an anchor tag and give it a color without the href
<astyle="color:#000001; text-decoration:none;">iOS Fix</a>
if this is happening on the generic email clients for iOS you can use a class in the header and assign the class to the td
<style>.appleLinkFixa{color:#000000; text-decoration:none;}
</style>
next you can add the class to the td which iOS will create the link by itself.
<tdclass="appleLinkFix">48 Pirrama Rd, Pyrmont NSW 2009</td>
Hope that helps answer your question.
Solution 2:
Add these styles
color: inherit;
text-decoration: none;
This is also very easy to Google.
Post a Comment for "Remove Blue Hyperlink For Phone Number In Email"