Space between blog posts for Activello theme

Hi,

Is it possible to decrease the space between posts so they appear a bit more closer/compact?

Please refer the screenshot.

Hi @bishgop,

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

.blog.home #page article .post-inner-content {
    padding: 20px 0;
}

Best Regards,
Movin

Thanks Movin. That code didn’t work.

The shared code is working on my test site.

Could you please share me your site URL where it is not working so that i can troubleshoot it?

Hi Movin,

I tried again but it didn’t work.

Here: http://www.littlebighappiness.in/news/

That code is not working on your site because the blog page is not your home page so please use the below CSS code instead.

.blog #page article .post-inner-content {
    padding: 20px 0;
}