Image Too Large in Outlook
Your company logo or profile avatar looks fine in Gmail and Apple Mail, but in Outlook it renders at full native resolution — sometimes hundreds of pixels wide — and completely destroys the signature layout.
The root cause is that Outlook's Word rendering engine ignores CSS width and height properties set via style="" attributes or <style> blocks. If you write style="width: 80px", Outlook simply doesn't apply it.
<img src="https://example.com/avatar.jpg" alt="Sarah Mitchell" style="width: 80px; height: 80px; border-radius: 50%;" > <!-- Outlook ignores CSS width — renders at full size -->
Add explicit HTML attributes width and height directly on the <img> tag. These are not CSS — they are old-school HTML presentation attributes that the Word engine does understand. Also remove border-radius (Outlook ignores it) and add border="0" to prevent the default image border in some email clients.
<img src="https://example.com/avatar.jpg" alt="Sarah Mitchell" width="80" height="80" border="0" style="display: block; width: 80px; height: 80px;" > <!-- HTML width/height attrs enforce dimensions in Outlook -->
SigFix's AI Transpiler scans every <img> element in your signature. If it finds a CSS width value in the style attribute, it automatically copies that value into a HTML width attribute. It also adds height, sets border="0", and adds display: block to the inline style — all in under a millisecond.