Title: First Post Displayed is 2x Width
Last modified: August 21, 2016

---

# First Post Displayed is 2x Width

 *  [kailas108](https://wordpress.org/support/users/kailas108/)
 * (@kailas108)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/first-post-displayed-is-2x-width/)
 * 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)

 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/first-post-displayed-is-2x-width/#post-4205921)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/carton/1.0.7/screenshot.png)
 * Carton
 * [Support Threads](https://wordpress.org/support/theme/carton/)
 * [Active Topics](https://wordpress.org/support/theme/carton/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/carton/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/carton/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/first-post-displayed-is-2x-width/#post-4205921)
 * Status: not resolved