Mar 23, 2023 08:49 AM
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!!
Solved! Go to Solution.
Mar 24, 2023 02:39 AM
Hmm, try:
<img src="https://www.btsministry.org/images/logoNEW_02.png" style="width:300px;height:150px;" />
This seems to work fine
Mar 24, 2023 02:39 AM
Hmm, try:
<img src="https://www.btsministry.org/images/logoNEW_02.png" style="width:300px;height:150px;" />
This seems to work fine
Mar 24, 2023 12:26 PM
Thank you, this worked great! 🙌