Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #763529

    Hi,

    Is there a way of positioning the submit button for different forms on my website?

    I need to have one form with the button centre aligned and another form to have the button left aligned.

    #763608

    Hey markpevans,

    Yes, first you need to enable Custom CSS Classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    Add a classname and use it tweak the css.

    Best regards,
    Nikko

    #763611

    Hi Nikko,

    Thanks for your prompt reply as always.

    I have already enabled the css classes.

    However if I adjust the submit button on one form it does it for all the others.

    #763626

    Hi,

    You can add a class name for example cform-right then in Quick CSS, you can add this css code:

    #top .cform-right .form_element input.button {
        float: right;
    }

    This will make the submit button on the contact form for example align to the right.

    Best regards,
    Nikko

    #763630

    Excellent!!!!

    That worked a treat.

    this was the code that I used for anyone reading this thread in future:

    #top .cform-right .form_element input.button {
    float: right;
    position: relative;
    right: 132px;
    background-color: #003c6e;
    color: #ffffff;
    border-color: #003c6e;
    }

    #763645

    Hi,

    Thanks for your kind words and thanks for posting the solution you made for your site it would be helpful to anyone who wants to do the same as what you have achieved :)

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.