Howdy, Is it possible to get the submit button on my

Howdy,

Is it possible to get the submit button on my homepage, currently labeled “Go!” inline with the name and email address fields instead of below it?

I’m using Gravity Forms.

http://staging1.websitesforhippies.com

Cheers,

Casper

  • Michelle Shull
    • DEV MAN’s Apprentice

    Hi, Casper!

    I’ve been trying to nudge your Go button with some CSS for several minutes, and it does not appear to want to budge.

    Would you mind letting me look at your settings? If this is ok, just grant me temporary admin access to your site by clicking “Grant Access” button in the WPMU DEV Dashboard Settings from the following path and reply on this thread after granting it?

    Admin -> WPMU DEV -> Support -> Support Access Tab

    If you have not installed WPMU DEV Dashboard plugin yet, kindly do that here : https://wpmudev.com/project/wpmu-dev-dashboard/ and then allow access as per the above process.

    Thanks!

  • Timothy
    • Chief Pigeon

    Hey there,

    I received an invalid token when trying to access your site, no worries I took a look on the front and something like this should work:

    .gform_body{float:left;}
    .gform_wrapper .gform_footer{clear:none;}
    .gform_wrapper form {width: 580px;}

    I had to use the !important rule, it seems like another instance was being called later or !important was used somewhere. For me this worked:

    .gform_body{float:left !important;}
    .gform_wrapper .gform_footer{clear:none !important;}
    .gform_wrapper form {width: 580px;}

    Give those a try in your custom CSS area :slight_smile:

    Let me know how it goes.

    Take care.

  • Timothy
    • Chief Pigeon

    Hmm, looked ok when I did it before. I guess must had adjusted it but not included it. Sorry about that.

    We can remove the margin and add some padding, this should help:

    body .gform_wrapper .gform_footer {
    margin: 0;
    padding-top: 22px;
    }

    Let me know how that goes for you. :slight_smile:

    Take care.