CSS: How to Remove the Sign Up Text from the Save Draft Popup

  • John Oberlander
    Asked on April 5, 2025 at 3:30 PM
    I used the code you mentioned above to remove the "create an account" language when someone tries to save a form. I still am getting this message though. I'm worried users will still be a little confused by this. It still looks you have to sign up in order to save a draft and if "skip" then you won't save a draft. Can the sign up text be deleted and the blue text changed to say : Save a Draft.
  • Mark Alan JotForm Support
    Replied on April 5, 2025 at 3:38 PM

    Hi John,

    I understand that you're having trouble with the CSS code for removing the "create an account" language when saving a form draft. Keep in mind that CSS codes are form-specific. The codes may vary depending on how the forms are designed.

    Reach out again if you need any other help.

  • John Oberlander
    Replied on April 5, 2025 at 6:07 PM

    Mark, the code got rid of most of the text about signing up just not all of it. See the image i uploaded in my original post.

    Is there way to change the blue type in the pop to : “Save a Draft without creating an account” using css?

  • Lara JotForm Support
    Replied on April 6, 2025 at 1:08 AM

    Hi John, 

    Can you try adding the following CSS code to your form to hide the Sign-Up text?

    h2.m1t.isGreeting {
      display: none;
    }

    Give it a try and let us know how it goes.

  • John Oberlander
    Replied on April 6, 2025 at 8:50 AM

    This got rid of the "Sign up to save a draft headline" which helps...but it still says this which might be confusing to users. Can I change the blue type to say: "Save a Draft"CSS: How to Remove the Sign Up Text from the Save Draft Popup Image 1 Screenshot 20

  • chadwickarchitecture
    Replied on April 6, 2025 at 8:55 AM
    This got rid of the "Sign up to save a draft headline" which helps...but it still says this which might be confusing to users. Can I change the blue type to say: "Save a Draft”. I added this response to the thread but it doesn’t look like the photo I uploaded is appearing in the thread.

    ...
  • Dayron JotForm Support
    Replied on April 6, 2025 at 9:51 AM

    Hi John,

    Yes, it's possible to change the "Skip Create an Account" text to "Save a Draft". Just follow the steps below:

    1. First, copy the code below:
    a.m1ba{
      font-size: 0px !important;
    }
    a.m1ba:after {
      content: 'Save a Draft';
      font-size: 25px;        
    }

    2. Then follow the steps my collogues provided earlier on How to Inject Custom CSS Codes, and add the code I shared above.

    Check out the screencast below to see my results: 

    CSS: How to Remove the Sign Up Text from the Save Draft Popup Image 1 Screenshot 20 Give it a try and let us know if you need any other help.

Your Answer