Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #6955
    bill
    Member

    I currently see about an inch of padding between posts.

    It is roughly .5 inch bottom and .5 inch top of next post’s headline

    Is there a custom CSS for decreasing that amount?

    http://faithlcmc.org.previewdns.com/

    #6965
    Sakin
    Keymaster

    @bill: When you decrease it, you have to decrease it for different screen sizes. I will just give you hint and you can change it accordingly. Change the margin and padding as per your need.

    Just add the following css in “Custom CSS” box in Theme Options panel.

    .site-content article { margin-bottom: 40px; }
    @media screen and (min-width: 1190px) { { margin-bottom: 50px; } }
    @media screen and (max-width: 1060px) { { margin-bottom: 30px; } }
    @media screen and (max-width: 960px) { { margin-bottom: 20px; } }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘decrease post padding css’ is closed to new replies.