How do I make sure there are 3 columns, and not one long post when entering the
- The topic ‘How do I make sure there are 3 columns, and not one long post when entering the’ is closed to new replies.
Need help? Check out our Support site, then
How do I make sure there are 3 columns, and not one long post when entering the site?
The blog I need help with is: (visible only to logged in users)
Hello,
Your blog page is currently displaying in the intended layout. However, if you want your posts to display in a 3-column layout, you can try adding the following CSS:
.blog #infinite-container {
display: flex;
flex-wrap: wrap;
}
.blog .blog-holder {
width: 33.33%;
padding-left: 12px;
padding-right: 12px;
box-sizing: border-box;
}
If you’re referring to the 3-column page layout as seen in the theme demo, you will need to setup the Home Page template as defined in the theme setup instructions, https://wordpress.com/theme/natural/setup
I hope this helps. Thanks!