Problem with the section "articles" - preview length

Hi I have a problem with the articles section.
How can I make the length of the article preview equal?

On my computer is perfect, all the same.
while on other computers it is just slightly longer than the other

I attach photos to make you understand.

Hello there,

I hope you are doing well today.

You could try adding an excerpt so that you can make the sections use a similarly sized blog excerpt.

Source:

Best Regards,
Support

Thanks for the plug-in, but I can not fix it with the codes without using the plug-in?

Good evening Myneks

There is no need to use plugin WordPress has built-in option for excerpts or more tag and you and use them, :slight_smile:

I understand … but doing it manually I adjust it only for my resolution?
While if you resize the browser window keeps changing.
I would like to fix it once and for all for all resolutions.

Hello,

In this case, we can add this CSS to have the article view use the same height:


#latest-news .section-content .post {
    height: 600px !important;
}

Using the excerpt would allow you to ensure that the text is all the same amount but this method should work too.

Best Regards,
Support

I’m fine with my resolution, as soon as I reduce the page, everything is confused.

The writings no longer remain within the white section.

Hello

We can update your CSS little bit:

@media only screen and (max-width: 1000px) {
#latest-news .section-content .post {
height: 600px !important;
}
}

There is something wrong.
In the larger dimensions, nothing changes, of course. but in the smaller sections instead the text goes out from the white part.

Hello,

You can try this CSS code to change the font size on mobile devices:


@media only screen and (max-width: 1000px) {
#latest-news .section-content .post .post-entry {
    font-size: 11px;
}
}

Best Regards,
Support

Even decreasing the font, the text exits the white part.
I would like to understand how to fix it.
Because even changing the size of the white part and not the text, nothing changes and the various boxes are not aligned.

Hello,

The issue here is the word count really, the theme will adjust the area automatically depending on the word count so you can try adding a read more tag to those posts and this will reduce the word count to something that falls within the threshold of the height limit.

To add the read more tag, you need to edit the post then use the read more icon like in the image below:

Best Regards,
Support

Can you count lines instead of words?
My problem lies precisely in this.

However, the solution you gave me will work, only for each article that I have to look at how many individual words I will show in the preview

Hello,

It would not be able to count lines, as the lines can change the size depending on the screen size but as long as there is not too much content it will stay with in the height threshold for that section.

Best Regards,
Support