I would like to reduce the padding on the post index page

Hello,

I would like to reduce the top and bottom padding of the post-text boxes on the post index page. I would like to reduce the vertical space basically and show a bit more posts on one screen.
I already removed the “date/leave comment” text, however, the empty space is still there. How can I delete this empty space between the title and the post excerpt?
And how can I reduce the top and bottom padding?
Thank you

Hi @zkrista,

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 the latest version of Sparkling theme on the below path.

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

body.archive .post-inner-content, 
body.blog .post-inner-content{
  padding: 15px 20px;
}

body.archive .post-inner-content h2.entry-title, 
body.archive .post-inner-content header.entry-header,
body.blog .post-inner-content h2.entry-title, 
body.blog .post-inner-content header.entry-header {
    margin-bottom: 10px;
}
body.archive .post-inner-content .entry-content,
body.blog .post-inner-content .entry-content {
    margin-top: 10px;
}

Best Regards,
Movin