Page 1 of 1

[SOLVED]Unable to CSS Style the Submit button in Formbuilder

Posted: Mon Oct 15, 2012 4:28 pm
by NicoCollu
Hello!

I want to CSS Style the Forbuilder module Submit button.

I'm able to change it's size, margin etc., but not the actual font, the background or border of it.

I'm using the "contact" form.
I'm using the CSS command

Code: Select all

.submit { }
but I look into the form template and that addresses the actual button, but not the text.

Does anyone know a way on how to do this?

Thank you!

Re: Unable to CSS Style the Submit button from the Formbuild

Posted: Mon Oct 15, 2012 5:25 pm
by uniqu3
how about

Code: Select all

.submit input {
 the style
}
or

Code: Select all

.submit input[type="submit"] {
 the style
}

Re: Unable to CSS Style the Submit button from the Formbuild

Posted: Mon Oct 15, 2012 10:00 pm
by NicoCollu
uniqu3 wrote:how about

Code: Select all

.submit input {
 the style
}
or

Code: Select all

.submit input[type="submit"] {
 the style
}
Hey!

The first code that you submitted worked perfectly for me!

Thank you!!