CSS Text presentation help

Hi,

I saw this nice text presentation on one your templates:

How do I add this???

Thank you!

Dear @Qman,
These are <h4> headers and that's the CSS used in the template:

.fd-form h4, .fd-form .h4 {
    font-size: min(4.5vw, 1.40625rem)!important;
    padding-top: 4px!important;
    padding-bottom: 4px!important;
    display: flex!important;
    flex-direction: row!important;
}

.fd-form h4:before, .fd-form h4:after{
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
}
.fd-form h4:before {
  margin-right: 10px
}
.fd-form h4:after {
  margin-left: 10px
}
1 Like

Perfect! Exactly what I needed!

Thanks again.