Landing › Forums › Somentra (Impeka) › Feedback › Special underlined title › Reply To: Special underlined title
Please give your title a custom class inside the title element (and replace it with the “custom-class” you will find in the code below). You can find it at the very bottom.
This is your code, feel free to adjust it to your needs:
.grve-title.custom-class::after,
.grve-title.custom-class span::after {
content: ”;
display: block;
position: absolute;
width: 100%;
bottom: -15px;
height: 3px;
}
.grve-title.custom-class::after {
background-color: #efefef;
}
.grve-title.custom-class span::after {
background-color: #ffb44c;
z-index: 1;
}
.grve-title.custom-class span {
position: relative; /*makes sure the colored line fits the titles width*/
}

