mmistakes / jekyll-theme-skinny-bones

A Jekyll starter with a variety of flexible layouts and components.
https://mmistakes.github.io/jekyll-theme-skinny-bones
MIT License
802 stars 907 forks source link

Content below post-grid sucked into grid #66

Closed michaellevy closed 8 years ago

michaellevy commented 8 years ago

Anything below my blog tiles gets sucked into whatever width is left after the last tile. Is there a way to add content below the grid? Thanks.

screen shot 2016-04-30 at 9 53 10 am

mmistakes commented 8 years ago

You need to properly clear the teasers in the grid as they are they have float: left; set in the CSS.

Closed issue #54 is related and might point you in the right direction.

michaellevy commented 8 years ago

Thank you. It was as easy as adding <div style="clear: both;"></div> between the grid and next section.