• Resolved anthony4370

    (@anthony4370)


    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/

Viewing 15 replies - 1 through 15 (of 17 total)
  • 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

    (@anthony4370)

    I tried that rule before I asked for help using a parent and child command.
    Thanks for the quick response

    So are you saying it didn’t work? What did you add and where?

    Thread Starter anthony4370

    (@anthony4370)

    I add it to the Custom CSS FormEngine itself and then I tried adding it to the custom CSS in Virtue Theme

    I don’t see it anywhere. Try adding this to custom CSS:

    .form-actions {
        background-color: none;
        border-top: 0;
    }

    Thread Starter anthony4370

    (@anthony4370)

    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/

    So are you happy with that?

    I thought you wanted to get rid of the white space around the submit button.

    Thread Starter anthony4370

    (@anthony4370)

    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

    Why have you not tried what I posted:

    .form-actions {
        background-color: none;
        border-top: 0;
    }

    Thread Starter anthony4370

    (@anthony4370)

    I did and nothing happened

    Thread Starter anthony4370

    (@anthony4370)

    then I tried
    #formengine {
    background-color: none;
    border-top: 0;
    }
    and that didn’t work either

    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

    (@anthony4370)

    It’s not changing the background around the Submit button. I left the css code there for you to look at

    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

    (@anthony4370)

    ok we are getting somewhere πŸ™‚

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

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