Hallo Community,
Ich habe ein kleines/großes Problem. Ich möchte eine HTML Vorlage für eine Outlook E-Mail bauen. Ich habe es nun geschafft ein Hintergrundbild einzubauen, auf dem mein Text zu sehen ist. Doch wenn ich Links (HTML A-Elemente) hinzufüge, kann ich diese nicht
anklicken, bzw. man kann überhaupt keinen Text markieren. Ich habe die Vermutung dass das Bild sich irgendwie vor den Text geschummelt hat, so das man den Text aber noch sehen kann. Kann mir jemand eine Lösung zu meinem Problem geben?
HTML Code:
[...]
<table height="100%" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td background="[BILD]" width="1024" height="768" valign="top">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:1024px;height:768px;">
<v:fill type="tile" src="[BILD]" color="#F1F1F1" />
<v:textbox inset="0,0,0,0">
<![endif]-->
<div>
<table style="padding: 100px 50px;">
<tbody>
<tr>
<td>
Inhalt
</td>
</tr>
</tbody>
</table>
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
</tr>
</table>
[...]
MFG Benutzer0000