[Resolved] The footer of single post is bigger than the others

Home Forums Support [Resolved] The footer of single post is bigger than the others

Home Forums Support The footer of single post is bigger than the others

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1827168
    Tan

    Hi there,
    I create a footer in elements and It works perfectly. But the footer of single post is bigger than the others.
    How could I fix that?
    These are homepage and single post.
    Thank you so much.

    #1827464
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS on your site:

    @media (min-width: 769px) {
        .single-post p {
            font-size: 18px !important;
            line-height: 1.5em;
            margin-bottom: 30px;
        }
    }

    If you change it to the following it will only apply to the posts content:

    @media (min-width: 769px) {
        .single-post .entry-content p {
            font-size: 18px !important;
            line-height: 1.5em;
            margin-bottom: 30px;
        }
    }
    #1827520
    Tan

    I got it. Thank you so much David! ^^

    #1827523
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.