• earlman

    (@earlman)


    It seems like the option to switch the layout between one and two columns is not available for the Posts Page. Is there any way to use the one column option?

Viewing 3 replies - 1 through 3 (of 3 total)
  • jamescockroft

    (@jamescockroft)

    In a child theme, add

    single-post #secondary {
    display: none !important;
    }
    .single-post #primary {
    width: 100% !important;
    }

    And make adjustments from there.

    So far, the biggest problem I’ve found is getting WordPress to size ‘Large’ images to my specifications, and Jetpack galleries to follow the content width. Both of those follow some functions in the Twenty Seventeen theme that I haven’t found a way to kill yet.

    Thread Starter earlman

    (@earlman)

    Thanks for the help.

    This is not quite what I was looking for, though. I was hoping to change the page that displays the list of blog posts, not the single posts themselves.

    peterjb101

    (@peterjb101)

    This is what I used to get one column on my main blog/summary/excerpt page. I removed the sidebar widgets and changed the index.php file to show excerpts.

    body:not(.twentyseventeen-front-page) .entry-header {
    text-align: center;
    }
    .single-featured-image-header {
    max-width: 94%;
    margin: auto;
    }
    .blog:not(.has-sidebar) #primary article {
    width: 94%;
    margin: auto;
    float: none;

    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘One Column for Posts Page’ is closed to new replies.