-
Kathleen_LangGefragt am 28. September 2023 um 04:57
Hallo,
wir nutzen bei Formularen die Funktion "Speichern & später Fortfahren". Den Button "Speichern" in unserem Formular kann ich frei beschriften. Die folgenden Fenster sind dann aber alle in Englisch und für unsere Kunden teilweise sehr verwirrend, da als erstes ein großes Login-Feld aufgeht und nur ganz klein unten "Skip" steht. Da unsere Kunden nicht alle englisch sprechen, scheitern hier viele.
Kann man den Text bzw. die Sprache in dem Speicherprozess anpassen?
Viele Grüße,
Kathleen
-
Shane Jotform SupportGeantwortet am 28. September 2023 um 08:28
Hi Kathleen,
Thanks for contacting Jotform Support. I'd like to let you know that I am using a translation tool to provide assistance, but if you would prefer to get assistance in the German language, we can forward your ticket to our German team. However, please note that it could take longer to receive a response.
With that being said, let me assist you with your inquiry. To clarify, do you want to change the language or adjust the size of the "Skip" at the bottom? If so, just add the CSS code below to your Form:/* Adjust font size and change language for skip */
.m1ba {
visibility: hidden !important;
position: relative !important;
}
.m1ba:after {
visibility: visible !important;
content: 'Überspringen'!important;
left: 0;
top: 0;
margin: 0px auto;
display: inline-block;
font-size: 16px;
color: #4285f4;
cursor: pointer;
}
To inject the CSS in your form, please check the steps in the screenshots below:
- In your Form Builder, click on the paint roller icon to display the Form Designer.
- Click on the Styles tab.
- Scroll down and look for the Inject Custom CSS field.
- Paste the CSS code.
- Click the Save button.
Result:
Give it a try and let us know if you need any help.