Support Forum

 
You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

CSS Styling

Information/How to
UserPost

10:42 am
April 7, 2010


Maria

1

How do you style the submit button? That goes for the styling of the form… in which .css file would I find this?

Thanks!!!

Maria

10:59 am
April 7, 2010


Steph

2

Add any custom styling into your theme css so it won't get overwritten when you update Formidable. If you're using Formidable Pro, the next release has additional options for styling the submit button so you won't need to add any css. Either way, for now add something like this:

.with_frm_style .submit input[type="submit"]{background:whatever;}

2:04 pm
April 10, 2010


Maria

3

Thanks so much… and quick reply too! Worked great! This is a great plug-in even for a newbie WordPress user like myself!

Best,

Maria

5:04 pm
April 10, 2010


Maria

4

Hi Again!

I am trying to add a border radius to my text fields and textarea which I have not had a problem doing in forms. However, could you help me again with the correct styling "path". I'm not sure where to access the correct css of the formidable forms. I'm guessing it is going to be something similar to what you advised me of above, but I'm so new to this and I'm just trying to wrap my head around the styling in formidable forms.

Any help grately appreciated! Thanks!

Maria

7:44 am
April 12, 2010


Steph

5

Border width will also be an option in the next Pro release. Here is the css I'm using:

.with_frm_style .form-field input[type="text"], .with_frm_style .form-field input[type="file"], .with_frm_style .form-field select, .with_frm_style .form-field textarea{border-width:2px}

Information/How to