Title: Pages Layout Wide
Last modified: February 9, 2018

---

# Pages Layout Wide

 *  Resolved [klmnt](https://wordpress.org/support/users/klmnt/)
 * (@klmnt)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/pages-layout-wide/)
 * Layout for pages “No sidebar – wide” doesn’t look right to me. Only the featured
   image is full width, the rest is narrower. Is that how it was intended?
    [Screenshot link](https://i.imgur.com/gwtJ4Bd.png)
    -  This topic was modified 8 years, 6 months ago by [klmnt](https://wordpress.org/support/users/klmnt/).

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9958159)
 * That display is correct. The content in the “wide” layouts always fill 2/3 of
   the available space whether there is a sidebar or not (the other 1/3).
 * If you want the content in pages with “No sidebar – wide” layout to expand to
   fill the entire width, you can add the following CSS to your site:
 *     ```
       .page.layout-no-sidebar-wide .loop-container {
         left: -57%;
         width: 213%;
       }
       .page.layout-no-sidebar-wide .featured-image {
         left: 0 !important;
         width: 100% !important;
       }
       ```
   
 *  Thread Starter [klmnt](https://wordpress.org/support/users/klmnt/)
 * (@klmnt)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9958905)
 * I would’ve preferred real full width option as this current “No sidebars-wide”
   layout creates some width discrepancies as you can see on the screenshot – Ad
   is narrower than f.image then narrower content.
    Given a choice I personally 
   would never choose this option as it breaks the structure, and it is content 
   that gives structure to border-less designs as well the newspaper feel I believe
   Mission-news is after. It’d nice if you could add a real full width option in
   the some of the future updates.
 * Thanks for the code and have a great weekend.
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9963408)
 * Thanks for the feedback on that. I can include another layout for a complete 
   full width display in an upcoming update.
 *  Thread Starter [klmnt](https://wordpress.org/support/users/klmnt/)
 * (@klmnt)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9971352)
 * I’d really appreciate that.
    BTW the code worked for the content but the Ad(before
   article) remained undersized and I couldn’t find the proper way to target it 
   in the CSS.
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9973936)
 * Please update to this snippet instead to widen the widget area before the article
   too:
 *     ```
       @media all and (min-width: 50em) {
         .page.layout-no-sidebar-wide .loop-container,
         .page.layout-no-sidebar-wide .widget-area-above-main {
           left: -57%;
           width: 213%;
         }
         .page.layout-no-sidebar-wide .featured-image {
           left: 0 !important;
           width: 100% !important;
         }
       }
       ```
   
 * It’s also wrapped in a media query so this won’t have any effect on mobile devices.
 *  Thread Starter [klmnt](https://wordpress.org/support/users/klmnt/)
 * (@klmnt)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9980125)
 * Nice. Thanks.
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9982446)
 * Happy to help!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Pages Layout Wide’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/mission-news/1.65/screenshot.png)
 * Mission News
 * [Support Threads](https://wordpress.org/support/theme/mission-news/)
 * [Active Topics](https://wordpress.org/support/theme/mission-news/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/mission-news/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/mission-news/reviews/)

## Tags

 * [bugs](https://wordpress.org/support/topic-tag/bugs/)
 * [layout](https://wordpress.org/support/topic-tag/layout/)

 * 7 replies
 * 2 participants
 * Last reply from: [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/pages-layout-wide/#post-9982446)
 * Status: resolved