-
Hro1983Hallo Jotform Team,
wenn ich in meiner App Franz! einen Abschnitt öffne, ist die Schrift im Abschnitt leider nicht mehr lesbar, weil Sie weiß eingestellt ist. Wie kann ich diese Farbe ändern? Wenn der Abschnitt eingeklappt ist passt alles mit der Hintergrundfarbe und der Schriftfarbe.
Vielen Dank und viele Grüße
Sebastian Peters
-
Reymae Jotform SupportHi Sebastian,
Thanks for reaching out to Jotform Support. Our German Support agents are busy helping other Jotform users right now, so I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in German, let us know and we can have them do that. But, it might take a while until they're available again.
Now, coming back to your question, you can inject a custom CSS code into your form to change the highlight color of the collapse section when being hovered. Let me show you how:
1. First, copy this code:
.form-collapse-table:hover {
background-color: #5f7b9c !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 Custom CSS box. That’s it. The code is automatically saved.
You may check my cloned form here. Check out my results in the screencast below:
We also have a guide about How to Inject Custom CSS Codes that you can check out.
Give it a try and let us know if you need any help.
-
Reymae Jotform SupportHi Sebastian,
To add information, if you want to change the font color instead when the collapse section fields are being hovered, you can use the code below:
.form-collapse-table:hover {
color: black !important;
}
Let us know if you have any other questions.
-
Hro1983Hello Reymae,
great support, thank you very much!