Posts only 2 columns??

Thank you for this great template! I’ve figured out most things, but I still have one question. The homepage displays two large one column posts and after this two column posts. How can I change this to only two columns posts AND with a read more link??

Thanks and keep up the good work!

Hi @usanneke,

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 .page-1 article.post:first-child,
.blog.home #page .page-1 article.post:nth-child(2) {
    width: 50%;
}
.blog.home #page .page-1 article.post:first-child{
    padding-right: 25px !important;
}

.blog.home #page .page-1 article.post:nth-child(2) {
   padding-right: 10px !important;
    padding-left: 25px !important;
}

.blog.home #page .page-1 article.post:first-child .post-inner-content,
.blog.home #page .page-1 article.post:nth-child(2) .post-inner-content {
    margin: 0;
    padding: 0 0 50px 0;
    border-bottom: 0;
}
}

Best Regards,
Movin