Noticed something odd tonight: I’ve added some inline CSS to some HTML snippets, including font color. The color shows correctly on the web, but is missing in email version. I assume it’s being overwritten in the email engine.
It’s not a huge deal, but since I use color sometimes for emphasis, it makes the emails lose some punch.
Thoughts?
<p style="font-family: Georgia, serif;font-size: 28px; color: darkblue;margin-bottom: 0;"><b><i>Notes from Bruce</i></b></p>
!important to the rescue! This works, at least in gmail:
<p style="font-family: Georgia, serif;font-size: 28px; color: darkblue!important;margin-bottom: 0;"><b><i>Notes from Bruce</i></b></p>
BTW, I assume you’ve looked at the new newsletter customization settings and they don’t get you what you’re looking for?
I would have thought that setting the section title color would get it…
Much of my use of this is for spans and not necessarily sections. But yes, the new newsletter settings will help. I need to play with them some.
1 Like
Yep, it won’t do everything, but I figured I’d point it out, just in case. If you aren’t following closely with the changelog, it can be easy to miss good stuff.
In any event, !important should fix you up in at least most cases. 