• Hi! Is there a way to make the top text (the visible CTA on the tab) bold or style it in any way? Also, is there a way to have the body content background be an image rather than a color?

    Thanks!

    • This topic was modified 3 years, 12 months ago by chezcheese.
Viewing 1 replies (of 1 total)
  • Plugin Author XAce90

    (@xace90)

    Hi @chezcheese.

    There’s not currently a way to do this in the plugin settings, but it’s easy to do using custom CSS. Do something like this to update the styles of the top text:

    
    .cpcta-flyin .cpcta-top-bar {
      color: red;
    }
    

    I’m not sure how responsive an image background will be, but you can do it the same way, using code like below:

    
    .cpcta-flyin .cpcta-content-panel {
      background-image: url(https://loremflickr.com/400/900);
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘How can I make the top text bold?’ is closed to new replies.