Tagged: 

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

    Dear Kriesi,

    On the page below (private link) there is an h3 heading followed by an h4 heading near the bottom the page. For some reason these are rendered with no spacing. The h3 headings elsewhere on the page have the correct spacing. Why does this happen when the h4 follows the h3?

    Thanks, Richard

    #1463180

    Hey Richard,
    This is margin due to this css:

    p+h1, p+h2, p+h3, p+h4, p+h5, p+h6 {
        margin-top: 1.5em;
    }

    the “p” means paragraph, so in your case please add this css:

    h3+h4 {
        margin-top: 1.5em;
    }

    Best regards,
    Mike

    #1463181

    Great, thanks Mike

    #1463183

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Padding between h3 and h4 headings’ is closed to new replies.