Image Formatting for External RSS Feed

Hi,

My team has been having issues with our external RSS feed. I provided an example below: We’d like to have space in betwwen the image and the text. I wasn’t able to pin point an issue in the code. Hubspot support was not able to help either. I used a mailchimp plugin to attempt to fix the issue but it did not help. I was wondering if anyone has run into this problem or can help out.

Thanks

Hi @VRamos3 .

You can do it in two ways.

Either via the UI, where you move the “featured image” down one line.
(But since i don’t think this has worked for you)

Use this second method:
(in “edit blog - rich text module”)
Go to Advanced → Source Code → Add <br> before post.featured_image
Like this:

<div>
<h2><a href="{{post.url}}" style="color: #3366ff;">{{ post.title }}</a></h2>
<p>{{ post.author_line }} {{ post.publish_date }}</p>
<br> {{ post.featured_image }} <br>
<div>{{ post.summary }}</div>
<p><a href="{{post.url}}">Read more »</a></p>
</div>

Hope it worked out!
/ Martin

Hi Martin,

Thanks for replying! This is what my current source code looks like. I attempted to add what you suggested but did not have any success. Do you see an error in the current source code? I appreiciate the help

<div style="font-family: {{primary_font}}; color: {{primary_font_color}}; background-color: {{body_color}};">
<h2 style="padding-bottom: 0; margin: 0 0 5px 0;"><span style="font-size: 18px; color: #3366ff;"><a href="{{post.url}}" style="color: #3366ff;">{{ post.title }}</a></span></h2>
<h3 style="padding-bottom: 0; margin: 0 0 5px 0;"><span style="font-size: 18px; color: #3366ff;"></span><span style="font-size: 18px; color: #3366ff;"></span><span style="font-size: 18px; color: #3366ff;"></span><span style="color: {{secondary_font_color}};">By {{ post.author }}, </span><span style="color: {{secondary_font_color}};">{{ post.publish_date }}</span></h3>
<p>{{ post.summary }}</p>
<p><span style="color: #3366ff;"><a href="{{post.url}}" style="color: #3366ff;">Read more »</a>    <a href="{{post.comment_url}}" style="color: #3366ff;">Comment »</a></span></p>
</div>

Thanks,

Vic