changing the colour of answer selection bars and next buttons | XM Community
Skip to main content
Solved

changing the colour of answer selection bars and next buttons

  • May 13, 2021
  • 2 replies
  • 137 views

Hi all
Does anyone have CSS code to change the colour of the selection bar and the next button. See below. I'd like to change the selection bar to being white (with black text) instead of neon green, and change the next button to being white with a black arrow. Any CSS code to do this, or other advice would be much appreciated. Thanks!
Capture.PNG

Best answer by Wendlyn

Try this to update the Header bar, Button and Progress bar color – CSS Code
Replace the 0, 102, 165 with desired color


.ProgressBarFill, .Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton, .customDivider {
           background: rgb(0, 102, 165) !important;

2 replies

Wendlyn
Forum|alt.badge.img+3
  • Answer
  • May 15, 2021

Try this to update the Header bar, Button and Progress bar color – CSS Code
Replace the 0, 102, 165 with desired color


.ProgressBarFill, .Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton, .customDivider {
           background: rgb(0, 102, 165) !important;


  • Author
  • May 16, 2021

Thanks! That worked perfectly :-)