[Resolved] Bottom margin in H4 and H5

Home Forums Support [Resolved] Bottom margin in H4 and H5

Home Forums Support Bottom margin in H4 and H5

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1523722
    Sanu Kumar

    How to give a bottom margin in H4 and H5 with CSS because under typography I can’t see this option in H4, H5 and H6. This option is available only in H1, H2 and H3.

    #1523761
    David
    Staff
    Customer Support

    Hi there,

    try this CSS which will allow you change each individually:

    h4 {
        margin-bottom: 20px;
    }
    h5 {
        margin-bottom: 20px;
    }
    h6 {
        margin-bottom: 20px;
    }

    If you want them all the same you can use this:

    h4, h5, h6 {
        margin-bottom: 20px;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.