Changes saved in Advanced Designer are not saved back in Builder

  • Evolation
    Asked on July 2, 2020 at 5:22 PM

    Hi,

    Whenever I make custom CSS code in Advanced Designer and go back to Builder, the changes are not saved. I see the basic design. 

    Please advice 

    Jotform Thread 2427193 Screenshot
  • Kevin Support Team Lead
    Replied on July 2, 2020 at 8:25 PM

    Try adding the "!important" property to the CSS code you have, it's possible that the current settings are overwriting the CSS code you have injected, note that each setting you change on the form such as color, font size, font style and the rest are applied as CSS code, the system generates the needed code to set the layout. 

    If the problem, persists, let us know. 

  • Evolation
    Replied on July 3, 2020 at 2:25 PM

    The problem is the same, no changes at all

  • Kevin Support Team Lead
    Replied on July 3, 2020 at 3:59 PM

    It seems like the issue happens due to the ".None" class on the CSS code targeting the button, kindly replace your code with this one: 

    .qq-upload-button {

        border-radius : 0 ;

        border : 2px solid #000000 ;

        box-sizing : 10px ;

        background : #fff ;

        display : flex ;

        align-items : center ;

        justify-content : center ;

        width : 250px ;

        height : 50px ;

        text-align : center ;

    }


    .form-all {

        border-radius : 0 ;

        background : fff ;

        box-shadow : none ;

    }

    I hope this helps.