Add padding to the top and bottom of a post page

https://piexec.com/post-topic-4/

How can I add padding to the top and bottom of all my POST pages with CSS please.

Thanks in advance!

Hello @piexec,

Thanks for writing in! By default, the Icon stack is using the following default CSS styling.

.hentry .entry-wrap{
    padding: 50px 0;
}

Now, if you want to adjust the padding in your single post, you can use the single-post body class and come up with this code:

.single-post .hentry .entry-wrap{
    padding: 50px 0;
}

Be advised that custom coding is beyond the scope of our support. You will have to maintain this custom CSS when there are theme updates to make sure that continues on working.

Feel free to adjust the padding as needed for your liking.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.