Title: Full width page template
Last modified: August 19, 2016

---

# Full width page template

 *  [hardieno8](https://wordpress.org/support/users/hardieno8/)
 * (@hardieno8)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/full-width-page-template/)
 * Hi,
 * I im wondering how i go about making a full width page template for my website,
   or is this even possible for my wordpress site [](http://the-giantess.com)

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

 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/full-width-page-template/#post-1656673)
 * it’s not too hard
 * Make the new template and give it the required header like this:
 *     ```
       <?php
       /*
       Template Name: Wide Content
       */
       ?>
       ```
   
 * I just made mine from a copy of page.php
 * Then remove the call to the sidebar
    `<?php get_sidebar(); ?>`
 * OK, that’s the easy part. The rest you may have to stumble through. Its different
   for every theme
 * You have to create new classes/IDs and put them in your css for any parts of 
   your page that control the narrower content and have widths on them
 * for instance I took `<div id="content">` and changed it to `<div id="wideContent"
   >`
 * then copied and edited the appropriate part of style.css
 *     ```
       #content {
       	float: left;
       	width: 775px;
       	margin: 0px 0px 0px 5px;
       	padding: 0 0;
               position: relative;
               z-index: 1;
       	}
       ```
   
 * was copied and edited to this
 *     ```
       #wideContent {
       	float: left;
       	width: 1000px;
       	margin: 0px 0px 0px 5px;
       	padding: 0 0;
               position: relative;
               z-index: 1;
       	}
       ```
   
 * and so on….
 *  Thread Starter [hardieno8](https://wordpress.org/support/users/hardieno8/)
 * (@hardieno8)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/full-width-page-template/#post-1656678)
 * Thank you i will give it try!!

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

The topic ‘Full width page template’ is closed to new replies.

## Tags

 * [full width page template](https://wordpress.org/support/topic-tag/full-width-page-template/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [hardieno8](https://wordpress.org/support/users/hardieno8/)
 * Last activity: [15 years, 8 months ago](https://wordpress.org/support/topic/full-width-page-template/#post-1656678)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
