“Eastern Vs. Western…” post on the right column when it should be on the left column
So, we figured that it might be a spacing issue, we experimented and set height property of .post-item, which relocated the Eastern Versus Western… post back to the left column (see image)
However, visually, it’s preferred not to resort to setting a fixed height property, and allow each post content in the header to define the height responsively.
With that said, what can we do to fix the alignment of posts? Appreciated any help or guidance to the right resources / tutorials. Thanks!
You just happen to have the right combination of title lengths working in the right order. That’s fine, until you add your next post with a longer title. What you should do is add a clearing div after every other post. Drop this js somewhere in your page.
The clearfix solution didn’t cause that problem. It definitely existed while I was looking at your site on specific screen sizes. To be blunt, that issue is caused by outdated html/css markup (having margins set in pixels and a max-width of 45.5% doesn’t really leave you with an even calculation on some screen sizes and causes your blocks to wrap since 45.5% of the width of their parent plus a fixed 40 pixel margin is greater than 100%). You really should consider having those post-item elements redeveloped. Hope that makes sense