Topic summary
A user seeks help adding spacing between blog posts in their Shopify journal layout.
Solution Provided:
- Navigate to Online Store → Themes → Edit code
- Locate the
theme.cssfile - Add CSS code at the bottom:
.template-blog .grid--uniform .grid__item {
padding: 10px !important;
}
This CSS targets the blog grid items and applies 10px padding to create visual separation between posts. The solution includes a screenshot showing the expected output with proper spacing applied.
Please provide store url?
@vikasdev Please follow the below steps to add space between journal blog post. Let me know whether it is helpful for you.
- From admin, go to “Online Store” → “Themes”.
- Click action button from the current theme and select “Edit code”.
- Search for the “theme.css” file and add the below CSS code at the bottom of the “theme.css” file.
.template-blog .grid--uniform .grid__item {
padding: 10px !important;
}
Then the final output will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

