Number in the posts one column on the home page

Hi! I’m from Ukraine. Very beautiful theme WordPress! How can I get the number of posts on the home page in one column had five instead of two? And the rest - in two columns. Sorry if it is not clear. I do not speak English. I use Google translator.

Hi @serg,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

@media (min-width: 768px) {
.blog.home .page-1 article.post:nth-child(3),
.blog.home .page-1 article.post:nth-child(4),
.blog.home .page-1 article.post:nth-child(5) {
    width: 100%;
    padding: 0!important;
}
}

Best Regards,
Movin

Thanks for your support

You are most welcome here :slight_smile:

Oops!
Unfortunately in this case does not appear link “read-more”
What can be done?

Added to the two lines of code

@media (min-width: 768px) {
	.blog.home .page-1 article.post:nth-child(3),
	.blog.home .page-1 article.post:nth-child(4) {
		width: 100%;
		padding: 0!important;
	}

	.blog.home article.post:nth-child(3) .read-more, .blog.home article.post .entry-footer,
  .blog.home article.post:nth-child(4) .read-more, .blog.home article.post .entry-footer {
    display: block;
	}
}

Correctly? :slight_smile:

Another question…
How to hide the category links in posts - on the categories page?

Hi @serg,

How to hide the category links in posts – on the categories page?

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

body.archive.category article li.cat-item {
    display: none;
}

Best Regards,
Movin