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

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 :)

Hi @parkie_0007 

you just need to define them separately 

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


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


Hi @parkie_0007 

Hope your issue is resolved 


Leave a Reply