[Support request] Using heading class in paragraph

Home Forums Support [Support request] Using heading class in paragraph

Home Forums Support Using heading class in paragraph

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #969808
    Matthew

    Can I get the H3 heading formatting while using a <p> tag?

    Something like <p class=”H3″>Title of something</p>

    #969823
    David
    Staff
    Customer Support

    Hi there,

    unfortunately not – you would need to create a custom class and style that with CSS eg.

    HTML
    <p class="custom-headline">Title of something</p>

    CSS

    p.custom-headline {
        font-family: font-name;
        font-size: 22px;
        font-weight: 600px;
        color: #222;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.