NEXT / Previous Button Colour | XM Community
Skip to main content
Solved

NEXT / Previous Button Colour

  • July 15, 2023
  • 2 replies
  • 157 views

Forum|alt.badge.img+5

Hi All

I am successfully using this CSS to change the colour of my Next / Previous buttons.

.Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton{
background-color: #017EDD;
color: #FFFFFF; /*
}

How do I split this out so I have individual control over each button?

Thanks :)

Best answer by krbhavya

Hi @parkie_0007 

you just need to define them separately 

 
.Skin #NextButton {
    background-color: #017EDD;
    color: #FFFFFF;
}


.Skin #PreviousButton {
    background-color: #FF4500;
    color: #F0F0F0;
}
 

2 replies

krbhavya
Level 6 ●●●●●●
Forum|alt.badge.img+20
  • Level 6 ●●●●●●
  • 172 replies
  • Answer
  • July 15, 2023

Hi @parkie_0007 

you just need to define them separately 

 
.Skin #NextButton {
    background-color: #017EDD;
    color: #FFFFFF;
}


.Skin #PreviousButton {
    background-color: #FF4500;
    color: #F0F0F0;
}
 


krbhavya
Level 6 ●●●●●●
Forum|alt.badge.img+20
  • Level 6 ●●●●●●
  • 172 replies
  • July 17, 2023

Hi @parkie_0007 

Hope your issue is resolved