Company logo in Email signature

I currently have my signature set up as HTML with code for my company logo. The problem is that the logo shows up HUGE in my outgoing emails! How do I make it smaller?

Here’s the logo code that’s in my signature line if that helps:

There will be something in the code that should set a max width for the signature.

In the HTML look for something like this:
<img src="logo-file-name.png">

You can change it to a desired width (e.g. 150px) by adding the width and height:
<img src="logo-file-name.png" style="max-width:150px; height:auto;">

Using Max width will let it resize between devices. If that doesnt work, then just set the width yourself using:
<img src="logo-file-name.png" width="150" height="auto">.

That’s exactly what I needed - thank you!

1 Like

Glad it worked :slight_smile: