Removing date/time styling from HTML email iPhone

Solution 1:

This will eliminate the blue+underline styling (tested on iPhone 5, iOS 8.3):

a[href^="x-apple-data-detectors"] {
    color: inherit !important;
    text-decoration: inherit !important;
}

Solution 2:

I managed to get this working by tricking the date detection algorithm into thinking it's not dealing with a date by inserting a zero width ​ character in between my date/time strings e.g:

<h4 style="font-size: 16px;color: #FFFFFF !important; text-decoration:none !important;font-family: Arial;font-weight: bold;padding: 0;margin: 0;text-align: left;line-height: 1.3;word-break: normal;" class="appleLinksWhite">
    Thursday&#8203; 20th&#8203; November&#8203;
</h4>

<p style="color: #FFFFFF !important; text-decoration:none !important;margin: 0;margin-bottom: 0;font-family: Arial;font-weight: normal;padding: 0;text-align: left;line-height: 19px;font-size: 14px !important;" class="appleLinksWhite">
    10:45am&#8203; until&#8203; 12:30pm&#8203;,<br>The Feast, Suffolk Food Hall, Ipswich
</p>