Change two steps form header color

Screen Shot 2023-01-30 at 9.25.01 AM
the color of the buttons to red thanks

1 Like

Just add this to your Page Custom Codes > CSS box:

.two-step-form.step-1 .tsf-header .tsf-item:first-child .tsf-number {
    background: red !important;
    color: white !important;
}
.two-step-form.step-2 .tsf-header .tsf-item:last-child .tsf-number {
    background: red !important;
    color: white !important;
}

It will produce this:
funnelish two step form header

That’s it!

1 Like