2 instead of 1 blog post columns help

Hi,

We’d like 2 instead of 1 blog post columns with the TaskHive theme. Other HivePress themes offer that - are there any options to transfer the design with as little as possible hassle?

The templates feature unfortunately doesn’t include the blog archive.

Hi,

The current design in TaskHive (and similarly in ListingHive) doesn’t include a grid layout option yet. We’re planning to add a grid feature in future updates.

For now, we can provide a CSS snippet to create a two-column layout. Please note that further CSS tweaks might be needed, for example, to hide certain elements or adjust spacing, to fully achieve the desired look.

Hi,

Please provide the CSS as a starting point for us - thanks!

Please try using this CSS snippet to set a 2-column layout:

.posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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