• Can someone please help me out. I have two questions about css of Hemingway Rewritten.

    1) How can I center my content area (I don’t have any sidebars etc).
    2) How can I increase the content area width ?
    3) How can I reduce blog post text size (just the body, not heading).

    Thank you in advance for your reply. Fingers crossed somebody very smart will help me out!

    My site is https://www.innakov.com

Viewing 1 replies (of 1 total)
  • My colleague (Richard thesacredpath) put together this CSS for you for the first two items:

    #secondary {
        display: none;
    }
    #primary {
        margin-right: auto;
        margin-left: auto;
    }
    .site-main {
        max-width: 676px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    You may also need to override the theme’s default content width in a function in a child theme. Since your site is under construction, we couldn’t see if you’re already using one. If you need further help with it, just let us know. Whatever you do, don’t edit the theme files directly or you’ll lose all your changes every time you update the theme to the latest version.

    3) How can I reduce blog post text size (just the body, not heading).

    Something like this in your child theme or custom CSS plugin should do the trick. You can adjust the percentage as you like:

    .entry-content {
     font-size: 90%;
    }

    Let me know how it goes.

Viewing 1 replies (of 1 total)
  • The topic ‘Change content width on Hemingway Rewritten’ is closed to new replies.