Skip to main content
Solved

Sizing Img for different devices: Gmail Automation

  • March 23, 2023
  • 2 replies
  • 47 views

DianaMk
Forum|alt.badge.img+3

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!!

Best answer by TheTimeSavingCo

Hmm, try:

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

This seems to work fine

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Hmm, try:

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

This seems to work fine


DianaMk
Forum|alt.badge.img+3
  • Author
  • Participating Frequently
  • March 24, 2023

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! 🙌