Hi Schnaubel,
I hope you are well today and thank you for your question.
We can fix this behaviour by developing custom CSS code but for that we have to truncate post title to one line only.
Please let me know if you are comfortable with it.
Best regards,
Vinod Dalvi
Hey Vinod,
thank you for your fast reply.
I am a bit unsure if this behavior first occurred with the new update…
If there is no other solution than truncate post title we should try it 🙂
Best regards,
Schnaubel
This is not an issue and didn’t occur in new update.
There isn’t any other solution so you have to truncate the post title to one line on home page.
You can truncate it by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Additional CSS
body.home #content .entry-title a {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: block;
}
Thank you, Vinod! 🙂
The solution works very well!
You are doing a great job here! 😉