• Resolved wptrainingmanual

    (@wptrainme)


    Hello,

    Is it possible to have a full-width template for posts with the sidebars left intact for the Twenty Sixteen Theme? All I want to do is remove the section that displays the author/post date/categories in the content section to expand the width of the content area but keep the sidebars section intact.

    It would look like the Twenty Sixteen layout for pages, but for posts instead. ??

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Herman Asrori (BSF)

    (@bsfherman)

    Hi @wptrainme,

    We can’t do that using this plugin. The Sidebar will also get removed. Sorry.

    What if you use custom CSS, something like the below?

    @media screen and (min-width: 61.5625em) {
        body:not(.search-results) article:not(.type-page) .entry-footer {
            display: none;
        }
        
        body:not(.search-results) article:not(.type-page) .entry-content {
            float: left;
            width: 100%;
        }
    }

    I tried on my dev site and this is what I had – https://share.bsf.io/12ugk0Pm

    If it doesn’t work for you, you might want to ask for some help on the respective Twenty Sixteen forum.

    I hope it will help.

    Kind regards,
    Herman ??

    Thread Starter wptrainingmanual

    (@wptrainme)

    Herman,

    That worked like a treat…the post layout looks perfect!

    Thank you so much for your reply and for your solution. ??

    Cheers,

    Martin

    Plugin Support Herman Asrori (BSF)

    (@bsfherman)

    So happy can be a help, Martin!

    Have a good day,
    Herman ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Full-width template with sidebars for 2016 theme’ is closed to new replies.