Blog Rows Are Not Even

Hello,

My theme and wordpress is up to date.

Our blog at https://billygeneismarketing.com/blog/ has rows that are uneven. Is there css I can use that will make these rows even side-to-side?

I attached a screen shot of what I mean.

I marked “RED” where the row becomes uneven. I know that is dependent on the text, but what can I do to make it work and show even?

Hi @bgim,

Thanks for posting.

The height is based on the amount of content, with the screenshot, it’s because of the title. The simple workaround is setting a minimum height for the title. Please add this CSS to your global custom CSS,

@media ( min-width: 768px ) {
.blog .entry-title {
min-height: 94px;
}
}

Thanks!

Thank you very much! Worked perfectly.

You’re most welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.