Title: Make Template Full-Width
Last modified: May 3, 2024

---

# Make Template Full-Width

 *  Resolved [wpusernumber0001](https://wordpress.org/support/users/wpusernumber0001/)
 * (@wpusernumber0001)
 * [2 years ago](https://wordpress.org/support/topic/make-template-full-width/)
 * Is there any way to make the template full-width. For example, on the test page
   I shared, there’s space to the left/right of the banner , and I’d like to eliminate
   it.
 * I changed the settings in Styles> Layout to remove padding but this did not do
   it. Previously, there was a template width selection option under Page Attributes,
   but I no longer see this option.
 * Can you please let me know if it’s possible to make pages and posts full-width?
 * Thank you!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmake-template-full-width%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [oikake](https://wordpress.org/support/users/oikake/)
 * (@oikake)
 * [2 years ago](https://wordpress.org/support/topic/make-template-full-width/#post-17734723)
 * Hi,
   If the padding setting in Styles > Layout does not work for you, you can 
   alternatively remove the padding with CSS code.
 * ![](https://i0.wp.com/snipboard.io/IFfUZW.jpg?ssl=1)
 * 
   You can remove it by setting the `padding-left` and `padding-right` of the class`.
   has-global-padding` to 0:
 *     ```wp-block-code
       .has-global-padding{
            padding-left: 0;
            padding-right: 0;
       }
       ```
   
 * Hope this helps!
 *  Thread Starter [wpusernumber0001](https://wordpress.org/support/users/wpusernumber0001/)
 * (@wpusernumber0001)
 * [2 years ago](https://wordpress.org/support/topic/make-template-full-width/#post-17736993)
 * Hi, Thank you for the tip. I added this code to the Additional CSS, but it’s 
   still not working. I used to be able to access the entire style sheet (looks 
   like that’s what you’ve shown here) in WP, but I have no idea where that is. 
   For now, I am just giving up and going to another theme. I noticed there are 
   other automattic themes in the WP themes library. that say “full-width template”
   or “wide blocks” and this one does not, so hopefully one of those will work. 
   Thank you anyway.
    -  This reply was modified 2 years ago by [wpusernumber0001](https://wordpress.org/support/users/wpusernumber0001/).
      Reason: marked as resolved
 *  [oikake](https://wordpress.org/support/users/oikake/)
 * (@oikake)
 * [2 years ago](https://wordpress.org/support/topic/make-template-full-width/#post-17737358)
 * Hi,
   Adding `!important` might be needed to make the code work:
 *     ```wp-block-code
       .has-global-padding{
            padding-left: 0 !important;
            padding-right: 0 !important;
       }
       ```
   
 * In any case, if the above code doesn’t work, switching to a full-width template
   theme will probably simplify things. 
   Hope this helps!
 *  Thread Starter [wpusernumber0001](https://wordpress.org/support/users/wpusernumber0001/)
 * (@wpusernumber0001)
 * [2 years ago](https://wordpress.org/support/topic/make-template-full-width/#post-17747816)
 * Thank you for the reply! I thought about !important, but I ended up switching
   themes, which has made it a lot easier. I just wanted to verify as I would like
   to use the Jaida theme for another website in the future—do I enter this in the
   Additional CSS section, whcih can be found at the bottom of every page, or is
   there another way to access a global style sheet for the entire theme?

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

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

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

## Tags

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

 * 4 replies
 * 2 participants
 * Last reply from: [wpusernumber0001](https://wordpress.org/support/users/wpusernumber0001/)
 * Last activity: [2 years ago](https://wordpress.org/support/topic/make-template-full-width/#post-17747816)
 * Status: resolved