davet et formu

  • teufelpoker
    Asked on January 7, 2015 at 3:44 AM

    ne zamandır jotform kullanıyorum cok güzel ama yeni sistem ile yapılmıyor davet et formu arka plan şeffaf yapılmıyor çözüm bulun bana lütfen.

    1- şeffaf görünmez arka plan yapamıyorum

    2- şeffaf görünmez arka plan olmuyor 

    tasarımcı olmadan önce hepsi süper oluyordu.

    Jotform Thread 491498 Screenshot
  • Ben
    Replied on January 7, 2015 at 9:06 AM

    Hi,

    I see that you have set the jotforms background (2) to be almost transparent:

    .supernova {
        background-color: rgba(0, 0, 0, 0.06);
    }

    To set it to be fully transparent please inject this CSS code:

     

    html.supernova {
        background: none transparent;
    }

    The center form (1) also has some almost transparent CSS applied, but as it is located on the already semi transparent background it seems as if it is darker.

    .form-all {
        background-color: rgba(0, 0, 0, 0.07);
        border: 1px solid transparent;
    }

    To

    div.form-all {
        background: none transparent;
        box-shadow: none !important;
        border: none !important;
    }

    This would eliminate background, box shadow and borders as well, but if you want to only remove the background and leave the borders, please inject this instead:

    div.form-all {
        background: none transparent;
    }

    You can see here, how to Inject Custom CSS Codes.

    Do let us know if you have any further questions and we would be happy to assist.

    Best Regards,
    Ben