Comment modifier la couleur de l'en-tête de l'avis avant de le soumettre ?

  • SalonViolet
    Demandé le 4 juillet 2025 à 11:03

    Bonjour,

    Je souhaite changer en blanc la couleur du texte du header du ''Review before submit''.

    Le code CSS proposé par Podo ( .review-header, .review-header * { color: white !important; } ) ne fonctionne pas pour ce header mais pour celui du formulaire lui même...

    Avez-vous la solution ?

    Merci.

    Comment modifier la couleur de len tête de lavis avant de le soumettre ? Image 1 Screenshot 20

  • Aries Jotform Support
    Répondu le 4 juillet 2025 à 13:59

    Hi gilles62,

    Thanks for reaching out to Jotform Support. To change the text color of the Review Before Submit header, you can try injecting the custom CSS codes below. Let me show you how to do it:

    1. First, copy this code:

    }
    #previewContainer .control_head h1 {
        color: white !important;
    }
    #previewContainer .form-subHeader {
        color: white !important;
    }

    2. In Form Builder, click on the Paint Roller icon on the right side of the page to open Form Designer.

    3. Now, in the Form Designer menu, click on the Styles tab, scroll down and paste the code into the Inject CSS Code box. That’s it. The code is automatically saved.

    Comment modifier la couleur de len tête de lavis avant de le soumettre ? Image 1 Screenshot 30

    Here's the sample result after injecting the custom CSS codes into the form:

    Comment modifier la couleur de len tête de lavis avant de le soumettre ? Image 2 Screenshot 41

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

  • SalonViolet
    Répondu le 4 juillet 2025 à 18:18

    Thanks Aries, it works well!