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
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;
}
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
Ok,
I would like the post excerpt on my blog page to be indented and middle (vertically) aligned. Any ideas for the CSS?
Thanks.