• Resolved magicflakes11

    (@magicflakes11)


    Hi,

    On all of my post pages, I am trying to center the post title, the content and remove the white space on the left so that it reads like a single column.

    I think the white space has something to do with the #Clearings in the css…..

    .clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
    content: “”;
    display: table;
    table-layout: fixed;
    }

    I have tried this…..

    .clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
    display:none;
    }

    but no luck…

    Can anyone help? Thanks in advance…

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    I’m sorry I didn’t see this question before. What you wanted to chane has nothing to do with clearings. The theme uses CSS Grid Layout in browsers that support it, and the changes needed are a little bit more complex. The main change would be to change the display property for the post article element:

    `
    .single main > article,
    .single main > .comments-area {
    display: block;
    }
    `

    I have thought about adding centered post layout as a option, but haven’t got the time to implement it.

Viewing 1 replies (of 1 total)
  • The topic ‘remove clearings’ is closed to new replies.