• I would like to have the first two posts be double-width. I see in Functions.js where you make the division of the subsequent posts, but I don’t understand how you apply a variable Masonry column width in the loop.

    How could I create the first two as full or double-width?

Viewing 1 replies (of 1 total)
  • It’s actually done in the CSS:

    article.masonry:first-child {
       max-width: 630px;
    }

    You can add a line to the style.css file to make your second post also have this width:

    article.masonry:nth-child(2) {
       max-width: 630px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘First Post Displayed is 2x Width’ is closed to new replies.