How to remove the X button of the lightbox form

  • Cliff
    Asked on June 20, 2016 at 8:50 PM

    The code is working as far as not letting the user click outside the light-box to close it but the "X" is still showing on the light-box.

    I injected the code exactly. What could be wrong? 

  • jonathan
    Replied on June 20, 2016 at 8:58 PM

    Can you please share to us the URL of your website page where we can test the form used?

    The CSS codes provide by our colleague should be added in the CSS of your website page -- not in the form.

    <style type="text/css">

    /* Disable clicks outside of lightbox */
    .jt-dimmer {
    pointer-events: none;
    }
    /* Hide X close button */
    .jt-title div {
    display: none;
    }

    </style>

     

    We will wait for your response