Title: Full Width problem
Last modified: August 20, 2016

---

# Full Width problem

 *  Resolved [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/)
 * Hi all, i got a problem with my Figero template ([http://wordpress.org/extend/themes/figero](http://wordpress.org/extend/themes/figero)).
   
   I have tried for 10 hours to make a page go Full width but without luck.
 * I really hope that someone can help me with this…

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/topic/full-width-problem/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/full-width-problem/page/2/?output_format=md)

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281186)
 * Are you using a Child Theme or Custom CSS/Styles plugin?
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281187)
 * Im using… What?. Im really a newbie to WP, sorry 🙂
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281188)
 * Look at the [plugins](https://tutorials.bluehost.com/help_media/wordpress_dashboard_plugin.png)
   area of the dashboard. Anything relevant in there?
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281189)
 * No, not at all.. :S
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281190)
 * How about a plugin named Jetpack?
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281191)
 * hmm.. no, it is the standard plugins. I havent touched anything yet
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281192)
 * Which page do you want full width?
    Can you link the website in question?
 * Try downloading and installing the plugin, [Jetpack](http://wordpress.org/extend/plugins/jetpack/)
   and use its Custom CSS option to add your own styles.
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281193)
 * Andrew, i want the full width in the contact page for example and i got my wp
   site on localhost 🙂
 * Okay, i have downloaded the Jetpack plugin.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281195)
 * Can you use [PasteBin](http://pastebin.com) to hold your HTML and CSS code for
   that Contact page, then link us the PasteBin page(s)?
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281197)
 * Do you mean the style.css code? and what kind of html do you need?
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281198)
 * Yes, the style.css code would be the CSS.
    The HTML is found by viewing your (
   Contact) webpage, right clicking where applicable and selecting ‘View source’.
   The subsequent pop-up window will contain your HTML.
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281200)
 * Okay. just a sec 🙂
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281202)
 * I uploaded the WordPress on my brothers site now.
    Well. The Css: [http://pastebin.com/3yyBv5cZ](http://pastebin.com/3yyBv5cZ)
   The HTML: [http://pastebin.com/g9X1rpZh](http://pastebin.com/g9X1rpZh)
 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281204)
 * using and creating page templates is not that complicated:
 * [http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates](http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates)
 * for instance, start with a copy of page.php, save it as fullwidth-page.php;
 * edit the section at the top to:
 *     ```
       <?php
       /**
        * Template Name: Fullwidth Page
        */
       get_header();
       ?>
       ```
   
 * to stretch the content over the full space, edit this section:
 *     ```
       <div class="grid_24">
                   <div class="content-main">
                       <div class="grid_16 alpha">
       ```
   
 * and remove `grid_16` so it looks like:
 *     ```
       <div class="grid_24">
                   <div class="content-main">
                       <div class="alpha">
       ```
   
 * remove this section:
 *     ```
       <!--Start Sidebar-->
       <?php get_sidebar(); ?>
                       <!--End Sidebar-->
       ```
   
 * then add this to style.css:
 *     ```
       .page-template-fullwidth-page-php .content-wrapper { margin-right: 0; }
       ```
   
 * full code of _**fullwidth-page.php**_: [http://pastebin.com/VYzwW5vB](http://pastebin.com/VYzwW5vB)
 * now you can use this new page template under: _**‘page attribute – template’**_
   when you edit the ‘contact’ page or any static page.
 * ideally all in a child theme; [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 *  Thread Starter [proxeus](https://wordpress.org/support/users/proxeus/)
 * (@proxeus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/full-width-problem/#post-3281206)
 * Hi alchymyth… Thats really nice, It worked.!!!
 * But when i did the changes, the whole template changed to fullwidth.
    How can
   I only use fullwidth on the contact page?

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/topic/full-width-problem/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/full-width-problem/page/2/?output_format=md)

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

## Tags

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

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 21 replies
 * 4 participants
 * Last reply from: [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/full-width-problem/page/2/#post-3281281)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
