How can I change the color scheme of the light box embedded code only for the button?

  • nirvanaproperty
    Asked on February 1, 2017 at 9:15 PM

    The form itself has the correct color, however when I use the embedded code provided for the lightbox it automatically makes it dark with blue font.  I would like orange font in my light box button.

     

    Please help

  • Charlie
    Replied on February 2, 2017 at 1:17 AM

    Hi,

    The style of the button for the lightbox seems to have been affected by the styling of your actual website. 

    Do you want it to be like this:

    How can I change the color scheme of the light box embedded code only for the button? Image 1 Screenshot 20

     

    If you want it like that, you can add the style attribute inline of your <a> element. Here's what I meant:

    When you copy and pasted the lightbox embed code, you have this on your code:

    <a class="btn lightbox-70316431151140" style="margin-top: 16px"> Prequalify </a>

    That's the button of your lightbox. 

    Simply add the color property in the style attribute. If you want to have a color orange font, you can change that to this:

    <a class="btn lightbox-70316431151140" style="margin-top: 16px; color: orange !important;"> Prequalify </a>

     

    Let us know if that helps.