Stopka HTML E-Mail


ForumKategoria: HTML i CSSStopka HTML E-Mail
Sebastian zapytał 8 lat temu

Dzień Dobry,

Mam problem ze stopką HTML w mailu.
To jest stopka HTML – http://pastebin.com/ZWgAFbpA
Na Macu iOS wygląda super – http://pasteboard.co/2FHOZOxM.png
A na Outlooku (starym i nowym) – http://pasteboard.co/2FIaUUh0.png

Nie mam pojęcia co jest nie tak.

1 odpowiedzi
Damian odpowiedział 8 lat temu

To:

  1. <!–[if (gte mso 9)|(IE)]>
  2.                   <table width=”540″ align=”center” cellpadding=”0″ cellspacing=”0″ border=”0″>
  3.                     <tr>
  4.                       <td>
  5.                 <![endif]–>

Zamień na:

  1. <!–[if (gte mso 9)|(IE)]>–>
  2.                   <!–<table width=”540″ align=”center” cellpadding=”0″ cellspacing=”0″ border=”0″>
  3.                     <!–<tr>
  4.                       <!–<td>
  5.                 <–![endif]>–>

a to

  1. <!–[if (gte mso 9)|(IE)]>
  2.                           </td>
  3.                         </tr>
  4.                       </table>
  5.                     <![endif]–>

Na:

  1. <!–[if (gte mso 9)|(IE)]>–>
  2.                           <!–</td>–>
  3.                         <!–</tr>–>
  4.                      <!–</table>–>
  5.                     <!–[endif]>–>

Podziel się efektem.