• Resolved bullit82

    (@bullit82)


    Hi guys!
    Is there a way to make this blog post wider using custom CSS?
    I gave a look to the other posts but found nothing interesing for this case!

    Thanks in advance.

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • Try this snippet to widen the content area:

    .site-content {
        max-width: 1068px;
        width: 100%;
    }

    Let me know if that works for you.

    Thanks!

    Thread Starter bullit82

    (@bullit82)

    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

    Thread Starter bullit82

    (@bullit82)

    Yeeeeeees!
    It works.
    Thanks a lot!
    Is it possible also to remove the left side with the date?

    • This reply was modified 5 years, 2 months ago by bullit82.

    If you want to hide the date/author part then you can use this

    .single .post .entry-meta {
      display: none;
    }
    Thread Starter bullit82

    (@bullit82)

    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.

    Thread Starter bullit82

    (@bullit82)

    @kokkieh thanks for the tip.
    I’ll use that instead, wihout putting too much custom CSS!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Post page width’ is closed to new replies.