@5starplugins Hi tried the css you provide here :
https://ww.wp.xz.cn/support/topic/mailchimp-image-quality-low-no-space-between-pic-and-text/
<style>
.mc-rss-item-img {
width: 600px;
max-width: 100%;
margin-top:20px;
margin-bottom:20px;
}
</style>
But nothing change 🙁
Hi @johannroche the template CSS classes can change depending on which one you’re using, try this newer CSS examples here, which also include Outlook-specific CSS logic:
<style>
.mcRssImage, .mcnTextContent img {
width: 600px;
max-width: 100%;
margin-top:20px;
margin-bottom:20px;
}
</style>
<!--[if gte mso 9]>
<style>
.mcRssImage, .mcnTextContent img {
width: 600px;
max-width: 100%;
margin-top:20px;
margin-bottom:20px;
}
</style>
<![endif]-->
See if that helps?
@5starplugins Thanks
I try your code and identify the same problem, but i can see it’s just on Gmail.
If i watch my newsletter in the browser is ok.
Is a specific trick exist for Gmail ?
Cheers
-
This reply was modified 3 years, 8 months ago by
Johann ROCHE.
@johannroche Hmm Gmail usually displays well, it is Outlook that has often has display issues… I am not sure what to change for Gmail.
Our Premium plan offers this level of support and can dig into it more with you if you prefer, perhaps try the 14 day free trial?
See if you can determine the class name Gmail is using on Images within gmail.com website, inspect the image HTML? It may require some deeper HTML/CSS research and tweaking.
i found a way 🙂
.CToWUd{
padding-bottom:20px !important;
}
@johannroche Ah hmm, that looks like a dynamic CSS class, that may work only for that email, and may break on future emails sent out… please test that more, and see if there’s a parent class above the IMG to use instead, something like:
<...class="mc-rss-item"...>
...
<img ...>
...
So target that using:
.mc-rss-item img
You are right.
It works, thanks.
Anyway, i’m surprised to see today, that all my test of yesterday are working now.
Is there a kind of cache in gmail ? First was not working, and then he kept this for all the next test ?
Oh strange, but yes it may cache things. I am glad it’s all working now for you.