Convertable background colour and transparency settings?

  • 30 November 2017
  • 1 reply
  • 38 views

I have just launched our first Convertable and it’s working well. I can’t seem to locate the settings to adjust the convertables background colour or transparency. I’d like the overall background to be darker so the convertable stands out more.

Can someone point me in the right direction?


1 reply

Hi @soakley,

Unfortunately this is not something that can currently be configured within the popup builder. However, it can be changed using host page CSS. Add the CSS below to the host page and change the last value, 0.6 which is the default, in the brackets for a higher value to make it darker. A value of 1 will be completely black so perhaps try 0.7 first.

Hope this helps and let me know if you’ve got any further questions.
Brian

<style>
 .ub-emb-overlay .ub-emb-backdrop {
   background: rgba(0,0,0,0.6) !important;
 }
</style>

Reply