So I'm having an odd issue while setting up my RSS driven campaign in Mailchimp.
In an area in my template, I'm pulling in an excerpt from my post that could possibly have a link in it.
Let's say for example this is what a snippet of the code looks like in my template:
<div class="post-excerpt">
*|RSSITEM:DESCRIPTION|*
</div>
Which for example lets say when the email is generated and sent the source looks like this:
<div class="post-excerpt">
Lorem ipsum <a href="http://www.example.com">dolor</a> sit amet.
</div>
Obviously I cannot add any inline css to that link, because it's getting generated by Mailchimp. But I'm adding CSS in my template like this:
.post-excerpt a { color:pink; text-decoration:none; }
And I also have Mailchimp's "Automatic CSS Inliner" setting turned on. This however doesn't seem to be moving my CSS to the links that get generated by *|RSSITEM:DESCRIPTION|*
.
For some reason, in gmail on desktop, links appearing within .post-excerpt
are still appearing default blue and underlined. On my iPhone, they are pink without any text decoration, as they should be.
Any idea on how to get the links in this area to appear the way I need them to?
Thank you.