I have included the jquery-steps plugin. How can I change the colour of the Previous button without changing the next & finish button?
Thanks
If the code for the button is the same like on the jquery-steps pages, you can access the styles by the href-attribute of the button like this:
a[href="#previous"] {
background-color: red !important;
}
Note that setting !important
to the value might not be necessary for you when you load your styles after the css needed for jquery steps, but it just was when I added the style using the DOM inspector.