badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: How to Set 2 post per row

#77009

Hi @100offdeal,

Actually there is no option to show 3 or 2 posts per row. The layout is pretty dynamic. The posts per row will changes on certain screen sizes and even changes on the options with sidebar layout or full width with no sidebar layout. But it can be controlled with Custom CSS.

So please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

@media (min-width: 992px) {
	.post-wrap .post-col {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

(above code will work on bigger screen size even on Full width with no siderbar layout as well.)

Thanks