• Resolved jonnevill

    (@jonnevill)


    Hi,

    I would like the blog and posts to have the sidebar, posted in and posted on removed. So it looks similar appearance to the ‘Full width no title template’. Any help much appreciated.

    Thanks.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    Thanks for contact us.

    Please use following code for making full width no title template
    please go to Appearance > customize > Additional CSS
    and paste below code

    
    .blog .content-left-wrap{
    width:100%;
    }
    
    .blog .sidebar-wrap.content-left-wrap{
    display:none;
    }
    

    Let me know how it goes.

    Thanks

    Thread Starter jonnevill

    (@jonnevill)

    Thanks WDCODERGUY, that’s worked on the blog page. Is it the same principle for the post pages? This doesn’t work, but something like:

    .post .content-left-wrap{
    width:100%;
    }

    .post .sidebar-wrap.content-left-wrap{
    display:none;
    }

    Thread Starter jonnevill

    (@jonnevill)

    Ok I think I’ve worked it out:

    .single-post .content-left-wrap{
    width:100%;
    }

    .single-post .sidebar-wrap.content-left-wrap{
    display:none;
    }

    Remove the title:

    .entry-title {
    display: none;
    }

    Remove posted on:

    .entry-header .entry-meta {
    display: none;
    }

    Remove posted in:

    .post .entry-footer {
    display:none;
    }

    Thanks again @wpcoderguy

    Thread Starter jonnevill

    (@jonnevill)

    Ok,

    I would like the post excerpt on my blog page to be indented and middle (vertically) aligned. Any ideas for the CSS?

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove sidebar widget from blog and posts’ is closed to new replies.