App Backgound

  • koelnmesseinc
    Asked on March 19, 2025 at 7:59 AM

    I removed the background to the application, but yet I still see it showing. I cannot figure out what field this is sitting in. Can you please guide me?

  • koelnmesseinc
    Replied on March 19, 2025 at 8:09 AM

    i fixed the issue with the following CSS:


    @media only screen and (max-width: 1024px) {

     /* Target main container elements */

     .form-all, body, .jotform-form, .form-line {

      background: none !important;

      background-image: none !important;

     }

      

     /* Target right sidebar/background specifically */

     .form-right-column, 

     .form-header-group, 

     .form-section, 

     div[data-layout="full"],

     .form-background {

      background: none !important;

      background-image: none !important;

     }

      

     /* Additional selectors for background elements */

     .supernova, 

     .supernova body {

      background: none !important;

      background-image: none !important;

     }

      

     /* Target any element with background styling */

     [style*="background"] {

      background: none !important;

      background-image: none !important;

     }

    }