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

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
NicoCollu
Forum Members
Forum Members
Posts: 34
Joined: Sun Sep 30, 2012 8:05 pm

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

Post 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!
Last edited by NicoCollu on Mon Oct 15, 2012 10:01 pm, edited 1 time in total.
uniqu3

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

Post by uniqu3 »

how about

Code: Select all

.submit input {
 the style
}
or

Code: Select all

.submit input[type="submit"] {
 the style
}
NicoCollu
Forum Members
Forum Members
Posts: 34
Joined: Sun Sep 30, 2012 8:05 pm

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

Post 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!!
Post Reply

Return to “Layout and Design (CSS & HTML)”