Lastest news section problem

It’s always me, Myneks.
Sorry for too many questions but I would like to fix my site once for all.
After updating the theme I had various problems with this section.

  1. How can I change the “Read More” with a personalized message on this page?
  2. How can I make long articles the same? that end up in the same line.
  3. How can I change the third article that shows me? (It is in English and I want to keep it only for the English version)

Thanks in advance, I leave an attachment of the photo of the problem so you can better understand without opening the site.
However, I also leave the site link

Hi there

  1. this needs customization, you need to find that word in the theme files and change it, you can use this plugin to search texts theme files: String locator – WordPress plugin | WordPress.org
  2. you need to utilize excerpts in wordpress: What is Excerpt in WordPress? How to Add Excerpt in Posts
  3. “How can I change the third article that shows me?” - What do you mean?

Thanks!
Colorlib Support Team

3. “How can I change the third article that shows me?” – What do you mean?

The third article I see, exactly “4.0” is an old article in English.
While the first and the second are the most recent and in Italian.
(I have 4 articles in total, I would like to replace the 3rd one with the other one you can’t see)

GOod morning

“(I have 4 articles in total, I would like to replace the 3rd one with the other one you can’t see)” - Well, the easiest way is to edit your 4.0 article and replace content and title :slight_smile:
Please note, articles are sorted by the days, this means by changing the publishing date of the article you will be able to sort your articles the way you want to see them

My mistake, I thought you had written one article before another.

However with the excerpt I can’t, I add the tag <!–more–> nothing happens.

GOod evening

“I add the tag <!–more–> nothing happens” - to be honest im not sure how this text is related to your question, what i understand is that you want to change blog post with title 4.0 and easiest way is to change whole content of the blog post, including title, otherwise you have to create a new post and for changing post positions you need to use publish dates of the posts

I solved that step.
I was referring to question 2.
I can’t make them high equal

Good morning

Well, that’s different question :slight_smile:

Try this code:

#latest-news .section-content .post {
min-height: 650px;
}

I’m sorry, maybe I hadn’t explained myself well.
Anyway I tried it, it works in full screen, while making the screen smaller I have some problems.

I attach screen.

Good evening Myneks

well, if you want to utilize that code only for desktop devices use this modified version:

@media (min-width: 992px) {
#latest-news .section-content .post {
min-height: 650px;
}
}

After add the code, the problem is still here.

i attached a photo of the problem

Good morning

things to consider right now :slight_smile:

  1. remove previous code without media query and with important, that code must be removed
  2. you have to play with the height of the box under 992px width, try to set the height to 800px

The problem is only from the desktop version when I shrink the page.
On phone and tablet are fine.

I tried to follow the two points you recommended
(the first one I didn’t understand maybe), but still it doesn’t work by tightening the px

Good morning

No, i mean to increase the height of the box, this will be your CSS:

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

Ok, now there’s a bit of space underneath but it works and everything is the same.

Thanks for your help. The discussion can be closed.

Hi, there

that bit of space can be regulated by the changing height in the CSS code :wink:

Ok, will close this case now,
Feel free to contact us again if you have other questionsThanks!