Skip to main content

Update CSS for Heading Order CSS

Use the following CSS to update Heading sizes and/or remove or add transformations.

Text showing different heading styles: "Heading test," "Heading 3," "Heading 4," and "Heading 5 - No Uppercase."

Do not make H5 Smaller than 16px

.full-poc .body h3 {
    font-size: 20px;
    margin-top: 24px;
}
.full-poc .body h4 {
    font-size: 18px;
}
.full-poc .body h5 {
    font-size: 16px;
    text-transform: none;
}