Changing font color on button | XM Community
Skip to main content
Question

Changing font color on button

  • August 17, 2023
  • 3 replies
  • 214 views

Forum|alt.badge.img+4

Hi, I’m trying to change the font color on my “Next” and “Back” buttons from black to white.  Just the text, the background color is ok.

Thanks!

3 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • 1555 replies
  • August 21, 2023

@CraigTank You can use below CSS to achieve it. Kindly add it to your surveys look and feel>style>custom CSS

#NextButton,
#PreviousButton {

color: #fff !important;
}

 


Sachin Nandikol
QPN Level 6 ●●●●●●
Forum|alt.badge.img+44
  • QPN Level 6 ●●●●●●
  • 531 replies
  • August 21, 2023

Hi @CraigTank,

If you’re using ‘Classic’ template please use below code:

.Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton {

color: #000 !important;

}

 

Please go to surveys ‘look and feel’, select ‘style’ & then select ‘custom CSS’ and paste above code.

 

Let me know if this works for you :)


Forum|alt.badge.img+4
  • Author
  • Level 1 ●
  • 1 reply
  • September 14, 2023

Thank you!  Very helpful!