Adding a flashing arrow to an order bump (CSS)

Hi, based on this example: Protein Variety Pack (PKIT-4) Checkout

You can see in their order bump they have a flashing arrow. I was told by support to post in here to see if someone can help. Has any one added something like this to the order bump section?

1 Like

Hey Bro.

Yes, here’s the code for it. Add it in the custom CSS section

.ob-header::before{
 content: "";
  background-repeat: no-repeat;
 padding: 1em;
 background-image: url(https://img.funnelish.com/5936/31437/1662143669-1643364132-arrow-flash-small.gif);
 
 padding-top:1px!important;
}
4 Likes