-
mhaginAsked on May 31, 2025 at 5:51 AM
HI,
i am trying to change the font for a page number 4 to be red. i only have a headline in this form. this is the link for the form: https://form.jotform.com/251502014231538
Thank you for your support.
Mona
Page URL: https://form.jotform.com/251502014231538 -
Podo: Support AI AgentReplied on May 31, 2025 at 5:52 AM
Hi The,
Thanks for reaching out to Jotform Support. I'm an AI assistant. I'll do my best to help you until someone from the support team is available.
To change the font color of a headline on page 4 to red, you can use custom CSS in your form. Here’s how to do it:
- Open your form in the Form Builder.
- Go to the Form Designer by clicking the paint roller icon.
- Navigate to the Styles tab and scroll down to the Inject Custom CSS section.
- Insert CSS code targeting the headline on page 4. For example, if your headline is a page element, you can use a CSS selector specific to that page and set the color to red:
.form-page:nth-of-type(4) .form-header { color: red; }
This code changes the headline color only on page 4.
Give it a try and let us know how it goes.
-
mhaginReplied on May 31, 2025 at 5:54 AM
it did not wot
-
Podo: Support AI AgentReplied on May 31, 2025 at 5:54 AM
Hi The,
Thanks for your reply. If the previous CSS didn't work, please make sure you are adding the code in the Form Designer's Inject Custom CSS section.
Try this CSS instead to target the headline on page 4:
.form-page:nth-of-type(4) .form-header { color: red !important; }
The !important ensures the color change overrides other styles.
Check that your form layout is Classic, as some CSS changes only work there.
-
mhaginReplied on May 31, 2025 at 5:55 AM
it did not work
-
Podo: Support AI AgentReplied on May 31, 2025 at 5:55 AM
Hi The,
If the CSS with !important didn't work, please ensure your form uses the Classic layout, as custom CSS may not apply in other layouts.
Also, double-check that you are adding the CSS in the Form Designer's Inject Custom CSS section.
If you want to change the background color of a specific page instead, you can use this CSS:
.form-page:nth-of-type(4) { background-color: #ff0000 !important; }
Replace #ff0000 with your desired color code.
-
Ronald JotForm SupportReplied on May 31, 2025 at 7:21 AM
Hi Mona,
Thanks for reaching out to Jotform Support. Can you confirm if you're trying to change the color of the Heading in the fourth page? If so, you can easily change the font color by Injecting CSS Codes into your form. Let me walk you through it:
1. First, copy this code:
h1#header_103 {
color: red !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.
See the screenshot below for the results:
Meanwhile, if that’s not exactly what you’re looking for, can you explain a bit more so I can help you better?
Give it a try and let us know how it goes.
-
mhaginReplied on May 31, 2025 at 8:23 AM
it did not work
-
mhaginReplied on May 31, 2025 at 8:25 AM
sorry, i did noy see your previous message, the heading for page 3 not 4 that i need to change the color of the front to red please
-
mhaginReplied on May 31, 2025 at 8:25 AM
this is the heading that i need to change to red font color: Submitting the form DOES NOT ensure that you have been selected!
-
mhaginReplied on May 31, 2025 at 8:29 AM
Dear Ronald,
it worked thank you so much
-
Lorenz JotForm SupportReplied on May 31, 2025 at 8:30 AM
Hi Mona,
You can replace the code provided earlier, with the one below:
/* Page 4 - Change font color of header to red */
.form-section:nth-child(4) .form-header {
color: red !important;
}
/* end */
Give it a try and let us know if you need any more help.
-
mhaginReplied on June 2, 2025 at 9:24 AM
thank you so much. it worked
Your Reply
Something Went Wrong
An error occurred while generating the AI response. Please try again!