Title: Full Width Template?
Last modified: August 20, 2016

---

# Full Width Template?

 *  [Bizstudio](https://wordpress.org/support/users/ajamm/)
 * (@ajamm)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/full-width-template-3/)
 * I can’t for the likes of me find the ‘no sidebar’ or full width setting… can 
   anyone help?

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

 *  Thread Starter [Bizstudio](https://wordpress.org/support/users/ajamm/)
 * (@ajamm)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/full-width-template-3/#post-3449359)
 * Ok, must be getting too late! I was looking for a full width POST… duh!
 * Anyhow, whats the easiest way to may the single post page show as full width?
 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/full-width-template-3/#post-3449408)
 * start by creating a child theme if you have not done already; [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 * edit single.php (the copy of single.php which you have savedinthe child theme);
   
   remove `<?php get_sidebar(); ?>` or comment the code out: `<?php //get_sidebar();?
   >`
 * than create a [copy of functions.php in your child theme](http://codex.wordpress.org/Child_Themes#Using_functions.php);
 * after the first line – which must only contain `<?php` – add:
 *     ```
       function twentytwelvechild_body_class( $classes ) {
   
       	if ( is_single() )
       		$classes[] = 'full-width';
   
       	return $classes;
       }
       add_filter( 'body_class', 'twentytwelvechild_body_class' );
       ```
   

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

The topic ‘Full Width Template?’ is closed to new replies.

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

 * 2 replies
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/full-width-template-3/#post-3449408)
 * Status: not resolved