change jquery-steps Previous button colour

1k Views Asked by At

I have included the jquery-steps plugin. How can I change the colour of the Previous button without changing the next & finish button?

Thanks

http://www.jquery-steps.com/

Previous button

1

There are 1 best solutions below

1
matthias_h On BEST ANSWER

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.