Highlight Text
Customize the color of highlighted text, enhancing user interaction and design cohesiveness.
Highlight V1

.highlight strong {
background-color: yellow;
padding: 0.1em 0.2em;
border-radius: 0.2em;
}
Highlight V2

.highlight strong {
font-family: "Poppins", sans-serif;
letter-spacing: 2px;
padding: 0 5px;
background: linear-gradient(
to bottom,
transparent 50%,
#fce041 50%
);
}
Funnel Instructions
Paste the code into the
Custom CSS
section of your funnel/website.Click on the text element you want highlighted and navigate to Advanced and add
highlight
to the custom class input.Bold the text you want highlighted.
Change the highlight color by changing
background: <your color>;
Last updated
Was this helpful?