Email Signature Design Best Practices: The Complete Guide
Master email signature design with this comprehensive guide. Learn typography, color, layout, mobile optimization, and email client compatibility best practices.
Signkit Team
Product Team - Dec 22, 2024

TL;DR: Great email signature design balances visual appeal with technical constraints. Use web-safe fonts, keep width under 600px, optimize images for mobile, and test across Gmail, Outlook, and Apple Mail. Less is more - the best signatures are clean and scannable.
Your email signature is seen more than any other brand asset. The average professional sends 40+ emails per day, making your signature one of your most-viewed designs. Yet most signatures are either boring blocks of text or cluttered messes that break across email clients.
This guide covers everything you need to design signatures that look great and work everywhere.
The Anatomy of a Well-Designed Signature
Visual Hierarchy
Great signatures guide the eye in order of importance:
- Name - Largest and most prominent
- Title and company - Supporting context
- Contact info - How to reach you
- Optional elements - Logo, social links, CTA
Information Architecture
Organize information logically:
Primary info (always visible):
- Name
- Title
- Company
Secondary info (easy to find):
- Phone number
- Email (optional - they're already emailing you)
- Website
Tertiary info (if space allows):
- Social links
- Scheduling link
- Company tagline
Typography Best Practices
Font Selection
Email clients have limited font support. Stick to web-safe fonts:
Recommended fonts:
- Arial
- Helvetica
- Verdana
- Georgia
- Trebuchet MS
- Times New Roman
Fallback strategy:
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
Avoid:
- Google Fonts (not universally supported)
- Custom brand fonts (won't display correctly)
- Decorative or script fonts
Font Sizes
Size your text for readability:
| Element | Size |
|---|---|
| Name | 14-16px |
| Title/Company | 12-14px |
| Contact info | 11-12px |
| Disclaimer | 10-11px |
Mobile consideration: Never go below 10px. Some email clients won't render smaller text.
Font Weights
Use weight to create hierarchy:
- Bold for your name
- Regular for title and company
- Light for contact details (if the font supports it)
Limit to 2 weight variations to maintain visual consistency.
Line Height
Proper line spacing improves readability:
- Minimum: 1.3x font size
- Recommended: 1.4-1.5x font size
- Maximum: 1.6x font size
Too tight = cramped and hard to read. Too loose = looks disconnected.
Color Theory for Signatures
Brand Color Usage
Use your brand colors strategically:
Do:
- Use primary brand color for name or accents
- Keep body text in dark gray (#333333 to #666666)
- Use color to highlight key links
Don't:
- Make entire signature in brand colors
- Use light colors on white backgrounds
- Use more than 2-3 colors total
Color Accessibility
Ensure sufficient contrast for readability:
- Minimum contrast ratio: 4.5:1 for normal text
- Recommended: 7:1 for important information
- Test: Use WebAIM's contrast checker
Common mistakes:
- Light gray text on white background
- Brand blue links that look like unvisited links
- Yellow or orange text (low contrast on white)
Safe Color Palette
Colors that work across email clients:
Name: #1a1a1a (near black)
Title: #4a4a4a (dark gray)
Contact: #666666 (medium gray)
Links: #0066cc (accessible blue)
Brand accent: Your primary brand color
Layout and Structure
Width Constraints
Design for email client limitations:
- Maximum width: 600px (standard email container)
- Recommended width: 400-500px
- Mobile consideration: Scale down to 320px viewport
Height Guidelines
Keep signatures compact:
- Ideal height: 100-120px
- Maximum height: 150px
- Reply signatures: 50-80px (shorter for thread clarity)
Spacing and Padding
Create breathing room:
- Between sections: 8-12px
- Between lines: 4-6px
- Around logo: 10-15px padding
- Mobile: Increase padding by 25% for tap targets
Table-Based Layout
Email clients require table-based HTML:
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="padding-right: 15px;">
<!-- Logo column -->
</td>
<td>
<!-- Info column -->
</td>
</tr>
</table>
Why tables?
- Consistent rendering across clients
- Outlook doesn't support modern CSS layout
- Gmail strips certain CSS properties
Image Best Practices
Logo Guidelines
Dimensions:
- Width: 100-200px (never exceed 300px)
- Height: 40-80px
- Aspect ratio: Maintain original proportions
File specifications:
- Format: PNG for logos with transparency, JPG for photos
- Size: Under 50KB per image
- Resolution: 144 DPI for retina displays (2x normal)
Image Hosting
Never embed images directly. Host externally:
Good options:
- Company CDN or website server
- Dedicated image hosting service
- Cloud storage with public URLs
Avoid:
- Base64 embedded images (bloats email size)
- Local file references (won't display for recipients)
- Free image hosts that add watermarks
Alt Text
Always include alt text for images:
<img src="logo.png" alt="Acme Company Logo" />
Why it matters:
- Displays when images are blocked
- Required for accessibility (screen readers)
- Provides context while images load
Image Blocking
Many email clients block images by default. Design for this:
- Include important info as text, not images
- Use alt text that communicates the image content
- Don't rely solely on images for contact info
- Test with images disabled
Mobile Optimization
Responsive Considerations
Most email clients don't support responsive CSS, so design mobile-first:
Fixed-width approach:
- Design at 320px width
- Stack elements vertically
- Use larger touch targets
Scalable approach:
- Use percentage widths where possible
- Set max-width to prevent overflow
- Test on actual devices
Touch-Friendly Elements
Make interactive elements easy to tap:
- Minimum tap target: 44x44 pixels
- Phone numbers: Make them tappable links (
tel:+15551234567) - Links: Add padding around link text
- Icons: Use at least 24x24px, with 44px tap area
Mobile Testing Checklist
- Text is readable without zooming
- Links and buttons are tappable
- Images scale correctly
- Signature doesn't overflow screen
- Phone numbers work when tapped
Email Client Compatibility
The Big Three
Focus your testing on these clients:
Gmail:
- Strips
<style>tags - Supports inline CSS
- Good image rendering
- Responsive with some limitations
Outlook (Windows):
- Uses Word rendering engine
- Poor CSS support
- Requires table-based layouts
- Image sizing can be unpredictable
Apple Mail:
- Best CSS support
- Renders web fonts
- Excellent image handling
- Most forgiving email client
CSS Support Matrix
| Property | Gmail | Outlook | Apple Mail |
|---|---|---|---|
| inline styles | Yes | Partial | Yes |
| background-color | Yes | Yes | Yes |
| font-family | Yes | Yes | Yes |
| margin | Partial | No | Yes |
| padding | Yes | Partial | Yes |
| border-radius | Yes | No | Yes |
| box-shadow | No | No | Yes |
| flexbox | No | No | Yes |
| grid | No | No | Yes |
Outlook-Specific Fixes
Outlook requires special handling:
<!--[if mso]>
<table><tr><td width="200">
<![endif]-->
<img src="logo.png" width="200" />
<!--[if mso]>
</td></tr></table>
<![endif]-->
Common Outlook issues:
- Images stretched or distorted
- Padding ignored on table cells
- Line heights not respected
- Background images not displaying
Testing Workflow
- Design in a modern browser
- Test in Litmus or Email on Acid
- Send test emails to personal accounts
- View on multiple devices and clients
- Iterate based on rendering issues
Common Design Mistakes
1. Too Much Information
Problem: Cramming in every possible contact method and social link.
Solution: Limit to essential info. One phone, one email, one link.
2. Oversized Images
Problem: Large logos that dominate the signature.
Solution: Keep logos under 200px wide, 80px tall.
3. Poor Color Contrast
Problem: Light text on light backgrounds.
Solution: Test contrast ratios. Minimum 4.5:1.
4. Relying on CSS
Problem: Using modern CSS that breaks in Outlook.
Solution: Use inline styles and table-based layouts.
5. Missing Alt Text
Problem: Images with no alt text show as empty boxes.
Solution: Add descriptive alt text to all images.
6. Signature Too Tall
Problem: Signature takes up half the email.
Solution: Keep height under 150px. Use shorter reply signatures.
7. Not Testing
Problem: Signature looks perfect in one client, breaks in others.
Solution: Test across Gmail, Outlook, and mobile before deploying.
Creating Signatures for Teams
Brand Consistency
Ensure all team signatures match:
- Same layout structure
- Same fonts and sizes
- Same color palette
- Same logo version and size
- Same social links
Variable Elements
Allow personalization while maintaining consistency:
Fixed elements:
- Layout and structure
- Logo
- Company info
- Disclaimer
Variable elements:
- Name and title
- Phone number
- Personal LinkedIn
- Optional headshot
Centralized Management
Benefits of centralized signature management:
- Instant updates across the organization
- Guaranteed compliance with brand guidelines
- No rogue signatures with outdated info
- Campaign banners deployable to all users
Frequently Asked Questions
What font size should I use for email signatures?
Use 14-16px for your name, 12-14px for your title and company, and 11-12px for contact details. Never go below 10px as some email clients won't render smaller text. These sizes ensure readability across desktop and mobile clients.
How wide should an email signature be?
Email signatures should be no wider than 600 pixels (the standard email container width). Recommended width is 400-500 pixels. For mobile compatibility, design signatures that scale down to 320 pixels without breaking.
Should I use a photo in my email signature?
Photos are appropriate for client-facing roles, sales, and personal branding. Use a professional headshot that's recent and well-lit. Skip photos for internal roles or regulated industries where they might create bias or compliance issues.
What image format is best for email signature logos?
Use PNG for logos with transparency and sharp edges. Use JPG for photos and complex images. Keep file sizes under 50KB per image. For retina displays, create images at 2x resolution (e.g., 200px image displayed at 100px).
How do I make my signature look good in Outlook?
Outlook uses Word's rendering engine, which has limited CSS support. Use table-based layouts, inline styles, and VML for background images. Test specifically in Outlook desktop (Windows), as it's the most challenging email client for signature rendering.
Key Takeaways
- Use web-safe fonts (Arial, Helvetica, Verdana)
- Keep width under 600px, height under 150px
- Use table-based layouts for Outlook compatibility
- Limit to 2-3 colors with sufficient contrast
- Test across Gmail, Outlook, and mobile
- Host images externally, never embed
- Include alt text for all images
- Design simpler signatures for replies
Design Professional Signatures Easily
Creating email signatures that follow all these best practices is complex. Signkit handles the technical constraints automatically, so you can focus on design.
Tags
Enjoyed this article?
Get more tips and insights delivered to your inbox every week.
No spam, ever. Unsubscribe anytime.


