Change Text Color on Submit Button in New Survey Taking Experience | Experience Community
Skip to main content
Question

Change Text Color on Submit Button in New Survey Taking Experience

  • January 21, 2026
  • 2 replies
  • 29 views

Forum|alt.badge.img+2

I’m trying to change the color of the text within the submit button in the New Survey Taking Experience and I’m not having any luck. Does anyone have custom CSS that can change the color of the text in the button? Thank you!

2 replies

Forum|alt.badge.img

Hi julie.locke,

 

Copy and paste the following code into your Look & Feel > Style > Custom CSS box:

 

/* Change text color for the Next and Submit buttons */
#navigation #next-button {
color: #FFFFFF !important;
}
/* Change the arrow icon color if it exists */
#navigation #next-button svg {
fill: #FFFFFF !important;
}
/* Change the Back button text color */
#navigation #previous-button {
color: #FFFFFF !important;
}

 

Replace FFFFFF with the hexadecimal code corresponding to the color you want in the text.

 

  • Lines 2, 3, and 4 allow you to change the text color of the "Next" and "Submit" buttons.
  • Lines 6, 7, and 8 allow you to change the color of the "Next" button's arrow, if present, to match the text color.
  • Lines 10, 11, and 12 allow you to change the text color of the "Previous" button.

 

I hope this helps.

 

Regards.


Forum|alt.badge.img+2
  • Author
  • January 22, 2026

Thank you so much!!