reduce padding round blog posts

  • Unknown's avatar

    Hi, in the Bueno theme custom CSS how can I reduce the padding round each post and title.

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

  • Unknown's avatar

    The padding around each post in Bueno is set like this:

    .post, div.page {
    padding: 50px 55px;
    }

    Adjust those numbers to get the amount of padding your want. Note that you can just have one number or two to adjust top/bottom right/left, or four numbers to adjust each edge individually such as:

    .post, div.page {
    padding: top right bottom left;
    }
  • Unknown's avatar

    If you haven’t already checked out the web inspector in your browser, note that you can right-click → Inspect Element to see the HTML for what you clicked and the CSS that applies to it. Web inspectors are great for adjusting CSS on the page before saving too. You can try things out to see how they’ll look.

  • Unknown's avatar

    Thanks again for being so prompt. I will check out the web inspector as well.

  • The topic ‘reduce padding round blog posts’ is closed to new replies.