gridsome-starter-blog icon indicating copy to clipboard operation
gridsome-starter-blog copied to clipboard

templating

Open GerhardMes opened this issue 5 years ago • 1 comments

hi there,

just launched the starter and everything works fine. But I get stuck trying to change the layout. I would like to fix the Card height and on a big screen would like to have the post listing in 2 columns. I have tried, but somehow I can't get it right. Any advice? Thanks

GerhardMes avatar Apr 15 '19 11:04 GerhardMes

For showing the posts in a 2 column format, I would try using CSS grid on the posts div.

.posts {
    display: grid;
    grid-template-columns:  auto auto;
}

Dana94 avatar Jun 17 '19 00:06 Dana94