Hi,
Is it possible to change the colours of Next, Back, Submit buttons in a wizard?
Thanks in advance!
Hi,
Is it possible to change the colours of Next, Back, Submit buttons in a wizard?
Thanks in advance!
Dear @Qman,
It's possible to change with CSS code, but only for right/left button, there's no special difference between the Next and Submit buttons.
If you use Public Web Forms, go to Theme settings > Custom CSS, and for SharePoint forms, open the CSS editor, and paste the following code:
.fd-form .wizard-footer-right .btn-primary{
background-color: green;
border-color: green;
}
.fd-form .wizard-footer-left .btn-primary{
background-color: red;
border-color: red;
}