Hi there,
Awhile ago I came across a ticket where someone from your awesome support team provided css to add an accent line to v.2 headline elements. I used this for awhile, however now I can’t get it to work? I’m trying to use it in the Pro footer builder. Here is the code:
/Add Accent Even to V2 Headline Element/
.accent.x-text-headline {
overflow: hidden;
}
.accent.x-text-headline .x-text-content-text-primary {
display: inline-block;
width: auto !important;
position: relative;
}
.accent.x-text-headline .x-text-content-text-primary:before,
.accent.x-text-headline .x-text-content-text-primary::after {
content: “”;
position: absolute;
top: 50%;
height: 2px;
width: 9999px;
display: block;
margin-top: -1px;
background-color: #e5e5e5;
}
.accent.x-text-headline .x-text-content-text-primary:before {
right: 100%;
margin-right: 0.8em;
}
.accent.x-text-headline .x-text-content-text-primary::after {
left: 100%;
margin-left: 0.8em;
}





