• Resolved khbs

    (@khbs)


    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

    (@twentig)

    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.