Try this snippet to widen the content area:
.site-content {
max-width: 1068px;
width: 100%;
}
Let me know if that works for you.
Thanks!
Hi!
Thanks for your help but it doesn’ work…
The blog bost still looks narrow!
Try something like this
.site-main {
max-width: 1068px !important;
width: 100% !important;
}
Make sure the !important are included
Yeeeeeees!
It works.
Thanks a lot!
Is it possible also to remove the left side with the date?
-
This reply was modified 6 years, 8 months ago by
bullit82.
If you want to hide the date/author part then you can use this
.single .post .entry-meta {
display: none;
}
Thanks.
No more date and author 🙂
Hi there,
Just adding that if you use Jetpack, which it appears you do, you can also hide the date and author via the Content Options section in the Customizer, without having to add any custom CSS to your site.
@kokkieh thanks for the tip.
I’ll use that instead, wihout putting too much custom CSS!