Blog posts in two columns
- This topic has 1 reply, 2 voices, and was last updated 12 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Anyone been able to create a template with their blog posts in two columns?
I found this, but the infinity engine stuff within CBOX theme might be causing me a little confusion to actually getting it working.
http://perishablepress.com/two-column-horizontal-sequence-wordpress-post-order/
Hi Geoff,
Sorry for the late reply. I took a look at that article and it seems overtly-complicated in order to display blog posts in two columns.
Couldn’t you try doing this in CSS?
For example. on the CBOX blog page, if I added the following CSS rules:
#content .post-content:nth-child(even) {
margin-right: 0;
}
#content .post-content {
float: left;
margin-right: 3em;
width: 46%;
}
The content would display in two columns.