fightfox90
Goto Top

Problem mit Text-Formatierung in Outlook 2010 Signatur

Hallo liebe Community!

Ich habe ein Problem beim Erstellen einer Outlook-Signatur.

Ein Beispiel wie es aussehen sollte und wie es wirklich aussieht:


bd410c918247347c57e518753d7fbc21


Ich habe auch schon ausprobiert, in Word 2010 eine Tabelle zu erstellen, in der ich das Logo eingefügt habe etc. Jedoch ist dann bei der Signatur ein größerer Seitenabstand nach links als in dem eigentlichen Text.

Sofern ich die Signatur ohne Bild erstelle, habe ich aber dieselben Probleme dass sich der Text verschiebt.


Ich hoffe ihr könnt mir folgen. Ich bin euch für jegliche Hilfe dankbar!

Mit freundlichen Grüßen

Content-Key: 292171

Url: https://administrator.de/contentid/292171

Ausgedruckt am: 29.03.2024 um 10:03 Uhr

Mitglied: emeriks
emeriks 04.01.2016 um 21:09:43 Uhr
Goto Top
Hi,
entweder nimmst Du für die Signatur eine Schriftart, bei der alle Zeichen gleich breit sind, oder Du must das mit HTML-Signaturen machen. Suche mal bei Kuugel nach "outlook 2010 HTML signature" o.ä.

E.
Mitglied: 122990
122990 04.01.2016 aktualisiert um 21:29:54 Uhr
Goto Top
Moin,
bloß kein Word zum Erstellen von HTML-Code oder sonstiges aus Word und Co. per Copy n' Paste nehmen, das wird 100% nichts.
Mach das Plain mit einem HTML-Editor deiner Wahl und CSS:

Simples Beispiel:
<!doctype html>
<html>
<head>
<meta charset="utf-8">  
<title>Demo</title>
</head>
<style type="text/css">  
	td,body {
		font-family:Arial, Helvetica, sans-serif;
		font-size:0.9em
	}
</style>
<body>

<table width="100%" border="0" cellspacing="0" cellpadding="0">  
  <tr>
    <td width="18%">BlaBlaBla</td>  
    <td width="25%" rowspan="6" align="center">LOGO</td>  
    <td width="16%">Tel.:</td>  
    <td width="41%">+49 00000-000000</td>  
  </tr>
  <tr>
    <td>BlaBlaBla</td>
    <td>Fax:</td>
    <td>+49 00000-000000</td>
  </tr>
  <tr>
    <td>BlaBlaBla</td>
    <td>E-Mail:</td>
    <td>user@domain.de</td>
  </tr>
  <tr>
    <td>BlaBlaBla</td>
    <td>Homepage:</td>
    <td>http://www.domain.de</td>
  </tr>
  <tr>
    <td>BlaBlaBla</td>
    <td>Facebook</td>
    <td>http://fazzebook.com/site</td>
  </tr>
  <tr>
    <td>BlaBlaBla</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>
Gruß grexit