NEXT / Previous Button Colour | XM Community
Solved

NEXT / Previous Button Colour

  • 15 July 2023
  • 2 replies
  • 80 views

Userlevel 6
Badge +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 :)

icon

Best answer by krbhavya 15 July 2023, 06:36

View original

2 replies

Userlevel 6
Badge +20

Hi @parkie_0007 

you just need to define them separately 

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


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

Userlevel 6
Badge +20

Hi @parkie_0007 

Hope your issue is resolved 

Leave a Reply