Help

Sizing Img for different devices: Gmail Automation

Topic Labels: Automations
Solved
Jump to Solution
1000 2
cancel
Showing results for 
Search instead for 
Did you mean: 
DianaMk
5 - Automation Enthusiast
5 - Automation Enthusiast

Hello! 

 

I've been mulling over how to optimize an image in the body of an email for an automated gmail connection- to send an email based on airtable records. 

 

I was able to add the image using airtable supported in-line HTML tag 

<img src="https://www.btsministry.org/images/logoNEW_02.png">

It optimizes perfectly on mobile, but the image is massive on desktop/laptop viewing sizes. 

I've currently not had luck including image sizes through Style or including specific px sizes. 

I.e. style="width:300px;height:150px”; 

Any suggestions on how to optimize the image size using airtable's supported HTML/CSS (span, style, img) ? I may just have the html syntax wrong 🙂 

 

Thank you!!

1 Solution

Accepted Solutions
TheTimeSavingCo
17 - Neptune
17 - Neptune

Hmm, try:

<img src="https://www.btsministry.org/images/logoNEW_02.png" style="width:300px;height:150px;" />

This seems to work fine

See Solution in Thread

2 Replies 2
TheTimeSavingCo
17 - Neptune
17 - Neptune

Hmm, try:

<img src="https://www.btsministry.org/images/logoNEW_02.png" style="width:300px;height:150px;" />

This seems to work fine

Thank you, this worked great! 🙌