Can you make text like this out of the box?

Hello,

Two questions:

  1. Can i put a red background like this behind text out of the box with xpro? (THe word LIVE has a red background)
    https://www.screencast.com/t/nBrIa2wqun

  2. Can I make this red background blink out of the box or with a simple css change?

Hi There @fxground

Thanks for writing in! Custom development is outside the scope of our support, however I can provide some guidelines to follow.

1.You can add a Text element and then add the following HTML.
<span class="my-caption">LIVE</span> STREAM
Then you can add the following CSS rules into your page’s custom CSS area.

.my-caption{
  background-color:red;
  color:#fff;
}

2.For the animations, you need to check one of the following resources below and implement accordingly.
(https://code.sololearn.com/Wv54364U2VCg/#html)
(https://css-tricks.com/almanac/properties/a/animation/)
(https://codepen.io/pixelthing/pen/QbxBYy)

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.