DYAD Theme post width customization

  • Unknown's avatar

    I set a default value for width of my main page using CSS, but I couldn’t find the way to set the width of each post. Can anyone help?
    Thank you

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, first off, it is best not to set a max-width or width on the body div since that is typically meant to extend the full width and height of the browser window/screen, so take the max-width off of the body CSS rule and then add this instead.

    #page {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    On the front page in Dyad, with the #page rule above, the posts will adjust to fill that new width.

  • The topic ‘DYAD Theme post width customization’ is closed to new replies.