Title: FormEngine from 2DMonkey
Last modified: August 21, 2016

---

# FormEngine from 2DMonkey

 *  Resolved [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/)
 * Hi,
    I am using the form builder from 2DMonkey (FormEngine) and I have emailed
   them 3 times and have had on response to date. Has WordPress got a form dedicated
   to FormEngine?, if not then someone that is using the plugin may be able to help.
   Where the Submit button is I have a white border that runs the width of the page,
   there has to be a CSS command that will eliminate this problem? I have tried 
   a few rules myself with no success, any help would be greatly appreciated.
 * [http://bigsplash.aussiedigitalgraphics.com/school-group-booking-enquiry-form/](http://bigsplash.aussiedigitalgraphics.com/school-group-booking-enquiry-form/)

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/formengine-from-2dmonkey/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/formengine-from-2dmonkey/page/2/?output_format=md)

 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374037)
 * >  Has WordPress got a form dedicated to FormEngine?
 * No and commercial products aren’t supported here.
 * But this really doesn’t have anything to do with the plugin. It’s basic CSS –
   a browser tool like Firebug will show you that the CSS in question is here:
 *     ```
       .form-actions {
           background-color: #F5F5F5;
           border-top: 1px solid #E5E5E5;
           margin-bottom: 20px;
           margin-top: 20px;
           padding: 19px 20px 20px;
       }
       ```
   
 * That CSS is from your theme – so try adding the code above to custom CSS and 
   changing the background color and the border-top.
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374056)
 * I tried that rule before I asked for help using a parent and child command.
    
   Thanks for the quick response
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374058)
 * So are you saying it didn’t work? What did you add and where?
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374080)
 * I add it to the Custom CSS FormEngine itself and then I tried adding it to the
   custom CSS in Virtue Theme
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374081)
 * I don’t see it anywhere. Try adding this to custom CSS:
 *     ```
       .form-actions {
           background-color: none;
           border-top: 0;
       }
       ```
   
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374083)
 * Ok I played around and changed the .form-actions to #formengine, using the first
   set of rules that you sent this what happened
    [http://bigsplash.aussiedigitalgraphics.com/school-group-booking-enquiry-form/](http://bigsplash.aussiedigitalgraphics.com/school-group-booking-enquiry-form/)
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374084)
 * So are you happy with that?
 * I thought you wanted to get rid of the white space around the submit button.
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374085)
 * I would like just to get rid of the white background around the button.I did 
   try #formengine {
    background-color: none; border-top: 0; } But that didn’t work
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374086)
 * Why have you not tried what I posted:
 *     ```
       .form-actions {
           background-color: none;
           border-top: 0;
       }
       ```
   
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374087)
 * I did and nothing happened
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374088)
 * then I tried
    #formengine { background-color: none; border-top: 0; } and that
   didn’t work either
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374089)
 * Actually, this IS working now:
 *     ```
       .form-actions {
           background-color: none;
           border-top: 0;
       }
       ```
   
 * Though I made a mistake on that background color – it can’t be none – it has 
   to be the color you want. So change that to a hex code or a color – then you’ll
   see it’s working.
 * Then you need to change the form CSS back to whatever it was.
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374090)
 * It’s not changing the background around the Submit button. I left the css code
   there for you to look at
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374091)
 * You didn’t change it to a color as I posted above – try this:
 *     ```
       .form-actions {
           background-color: red;
           border-top: 0;
       }
       ```
   
 *  Thread Starter [anthony4370](https://wordpress.org/support/users/anthony4370/)
 * (@anthony4370)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/#post-4374092)
 * ok we are getting somewhere 🙂

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/formengine-from-2dmonkey/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/formengine-from-2dmonkey/page/2/?output_format=md)

The topic ‘FormEngine from 2DMonkey’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 17 replies
 * 2 participants
 * Last reply from: [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/formengine-from-2dmonkey/page/2/#post-4374095)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
