Title: Removing header AND using Full Width Template
Last modified: January 22, 2022

---

# Removing header AND using Full Width Template

 *  Resolved [khbs](https://wordpress.org/support/users/khbs/)
 * (@khbs)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/removing-header-and-using-full-width-template/)
 * Hi, I want to remove the title from the Homepage (“Home”). I know about changing
   the template to “Twentig – no header”, but my site is using Full Width template,
   so I can’t use both. How can I remove the heading without the need to change 
   the template?

Viewing 1 replies (of 1 total)

 *  Plugin Author [Twentig](https://wordpress.org/support/users/twentig/)
 * (@twentig)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/removing-header-and-using-full-width-template/#post-15310423)
 * Hi,
 * What you want to achieve is not possible right out of the box. That being said,
   we can give you some custom CSS to achieve this layout.
 * To remove the title from the homepage, use the Twentig template. Then add the
   following CSS inside the Customizer > Additional CSS panel:
 *     ```
       body.home .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
       body.home [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
           max-width: 120rem;
       }
   
       @media (min-width: 700px) {
           body.home .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
               width: calc(100% - 8rem);
           }
       }
   
       body.home .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
           padding-left: 4rem;
           padding-right: 4rem;
       }
       ```
   
 * Hope that helps,
    Tom

Viewing 1 replies (of 1 total)

The topic ‘Removing header AND using Full Width Template’ is closed to new replies.

 * ![](https://ps.w.org/twentig/assets/icon.svg?rev=2569439)
 * [Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio](https://wordpress.org/plugins/twentig/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/twentig/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/twentig/)
 * [Active Topics](https://wordpress.org/support/plugin/twentig/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/twentig/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/twentig/reviews/)

## Tags

 * [H1](https://wordpress.org/support/topic-tag/h1/)
 * [heading](https://wordpress.org/support/topic-tag/heading/)
 * [title](https://wordpress.org/support/topic-tag/title/)

 * 1 reply
 * 2 participants
 * Last reply from: [Twentig](https://wordpress.org/support/users/twentig/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/removing-header-and-using-full-width-template/#post-15310423)
 * Status: resolved