Skip to content

Instantly share code, notes, and snippets.

@grantambrose
Last active August 11, 2016 16:12
Show Gist options
  • Save grantambrose/32ae4903a7bf32a3e625a372578ba2c0 to your computer and use it in GitHub Desktop.
Save grantambrose/32ae4903a7bf32a3e625a372578ba2c0 to your computer and use it in GitHub Desktop.
Convert the Beaver Builder Theme's Blog into a grid layout
/* Let's only convert the blog posts to a grid layout on medium devices and above */
@media only screen and (min-width: 992px) {
/* BLOG LAYOUT TO CONVERT IT TO A GRID with 2 blog posts across the row */
.fl-archive .fl-post{width:48%;float:left;margin-left:4%;}
.fl-archive .fl-post:nth-child(odd){margin-left:0;clear:both;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment