Changing color of the arrow in next buttons | XM Community
Skip to main content
Question

Changing color of the arrow in next buttons

  • May 1, 2024
  • 3 replies
  • 146 views

Forum|alt.badge.img+1

Hi everyone ! 

Does anyone know how to change the arrow color in the next button ? I need to change it from black to white. I tried some CSS codes posted by the community in other posts, but none of them worked. I have customized the background color of some next buttons and I don’t know if the script for the arrow color is overrided by the background one.

 

3 replies

RickB
Level 4 ●●●●
Forum|alt.badge.img+22
  • Level 4 ●●●●
  • 128 replies
  • May 1, 2024

Hi @Forno_99 
Did you try to put !important in the code? sometimes it will overwrite 

/* Target the arrow specifically */

.NextButton svg {

    fill: white !important; /* Set the arrow color to white */

}


Forum|alt.badge.img+1
  • Author
  • 1 reply
  • May 1, 2024

Hi ! Yes, I tried to put !important in the code but it didn’t work. Do you mind if I ask you if that code is for CSS or Java ? I’m not very pratical with coding


RickB
Level 4 ●●●●
Forum|alt.badge.img+22
  • Level 4 ●●●●
  • 128 replies
  • May 1, 2024

That is for CSS