Draw attention to key words in any heading. A simple CSS snippet that adds a coloured highlight to any text wrapped in a span — easy to customise and works anywhere.
Custom css
/* HOW IT WORKS
1. Wrap the word you want to highlight in a <span> tag in the Elementor heading widget
2. Example: Build and <span>launch</span> websites
3. Customise the styles below to match your brand
*/
selector span {
background: #0093FF; /* Change highlight colour */
padding: 0px 18px 0px 10px; /* Top, right, bottom, left spacing */
border-radius: 8px; /* Rounded corners */
color: white; /* Change text colour */
}