Button Text on forms

Hi support,

Could you help with a little CSS please?

I’d like to globally change the colour of text and border on buttons, I can change individually on buttons or on global buttons but not on a BB contact form or gravity forms submit button which is what I’m trying to at the moment.

I’ve added CSS below to BB code customiser but that ain’t working on gravity forms:

.fl-button-text {
color: white !important;
}

Thanks, Gerry

Hey Gerry,

You could try using the CSS snippet below. All forms should include a submit input type.

input[type=submit] {
  color: #FFF !important;
}

Ben

Hi Ben,

Worked a treat, many thanks!

No worries! Enjoy BB! :slight_smile:

Ben