Post feed bug 1.6.3.2

When setting up a post feed and choosing to have the featured image to the left of the blog content I have noticed that the text moves below the image in the right column if a heading is included in the post content (I have tried heading 1 - 6 along with a simple paragraph)

I have also tried to create the individual post in a standard ‘visual edit’ (in essence not using BB to edit the single post) but in the post feed the text content is still moved below the image.

If I may send you a screenshot I can also show you what I mean.

Has this bug been corrected in version 1.6.3.3?

Best of luck with correcting the bugs and glitches. Keep up the good work! :slight_smile:

Hi Michael,

Would you mind sending a link with an example. I don’t believe this was correct in 1.6.3.3 as it’s the first we’ve heard of it.

Thanks!
Justin

[Content Hidden]

Hey Michael,

This is actually caused by how your theme styles your heading tags with clear: both;. Try the CSS snippet below and see if it works.

.fl-post-feed-content h1,
.fl-post-feed-content h2,
.fl-post-feed-content h3,
.fl-post-feed-content h4,
.fl-post-feed-content h5,
.fl-post-feed-content h6 {
  clear: none;
}

Ben

Thanks again Ben. This worked for the post feed :slight_smile:

Awesome! Enjoy BB! :slight_smile:

Ben