How to allow posts on home page posts to appear 2 across.

First off, I’d like to say thank you for making this amazing theme!

I was wondering if it was possible to make posts to appear 2 posts across on the homepage, like you have it on the Color-lib themes page.

Thanks!

Hi @zelu,

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

That page template is created developing custom code.

You can achieve the similar layout but not exactly the same by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

body.home #main article {
  width: 49%;
  float: left;
  min-height: 475px;
  margin-bottom: 15px;
}
body.home #main .blog-item-wrap {
  margin-bottom: 0;
}
body.home #main article:nth-child(2n+1) {
  margin-right: 15px;
}
body.home #main .paging-navigation {
  clear: both;
}

Best Regards,
Movin