• Hi,

    I would like to decrease the bottom padding of my featured post because my excerpt is so small and there’s all this free space. Is there a way to do this?
    Here’s how it looks: https://ibb.co/nP6jHTw

    There’s so much free space after the excerpt, and ideally I would like to make the same size as in between the excerpt and the post meta.

    Also as a side question, is there a way to decrease the padding on all the other sides as well (left, right, top?)

    Thank you!

    EDIT: I would like to change the padding only of the featured posts/archive page, and not the single post container. If I change the padding in the Customizer > Layout > Container, it changes the padding of both.

Viewing 1 replies (of 1 total)
  • Hi,

    You can adjust the padding using this selector.

    article.post .inside-article {
        padding: 0px 0px 0px 0px;
    }

    Sequence is top, right, bottom, left.

    You reduce the space caused by the empty <footer class="entry-meta"> by adding this CSS.

    footer.entry-meta {
        margin-top: 0em;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How can I decrease the bottom padding of only the featured or archive posts?’ is closed to new replies.