• Resolved arceason123

    (@arceason123)


    How do I change the space around my posts? Both the white to the left and right of the text as well as the gray around the white.

Viewing 1 replies (of 1 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for using Ignite!

    You can use the following CSS to change the spacing around the post content:

    .entry, .excerpt {
      padding: 2.25em 13.333%;
    }

    You can copy and paste that code into the “Custom CSS” section in the Customizer (Appearance > Customize). Once added there, it should take affect right away.

    The code above is going to leave the spacing the same initially. You’ll want to change the “13.333%” value to increase or decrease the spacing on the left and right of the post content.

    Changing the space around the post container (the gray area) is a bit more complicated, but can be changed like this:

    .main {
      margin-right: 3.703%;
      margin-left: 7.407%;
    }

    You reduce the margin-left value to move the content further left, and vice-versa.

Viewing 1 replies (of 1 total)

The topic ‘How to adjust post width’ is closed to new replies.