Hi Enfold-Team!
I want to create overlapping underlines, like in this example:
How can I setup this with Enfold?
Thanks a lot for feedback.
Regards,
Matt
Hi Matt,
Please try to add this CSS code in Quick CSS:
#top .av-special-heading-tag {
background-image: linear-gradient(transparent 0%, transparent 65%, yellow 65%, yellow 90%, transparent 90%, transparent);
display: inline;
}
and then use a Special Heading element.
Hope this helps.
Best regards,
Nikko
Hi Nikko,
great, thanks a lot for your quick help!
Is it possible to not use this for all special heading elements, but only for single words I can choose inside the special heading element? Marked with <mark>single word</mark> or something else?
Best regards,
Matt
Hi Matt,
Please try wrapping your text in Mark tags and using the code as follows
#top .av-special-heading-tag mark {
background-image: linear-gradient(transparent 0%, transparent 65%, yellow 65%, yellow 90%, transparent 90%, transparent);
display: inline;
}
Best regards,
Yigit
Perfect, I love you guys!