Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @morriscookies,

    The issue with the alignment is caused by the styles inherited from the theme active in your website, a possible solution would be enter the following style definition into the “Customize Form Design” attribute in the “Form Settings” tab (https://cff.dwbooster.com/images/documentation/form-settings-tab.png)

    
    #fbuilder label{text-align:left !important;}
    

    However, if the issue persists, I will need the link to the webpage where the form is inserted for checking the styles that are affecting to the form’s fields.

    Best regards.

    Thread Starter morriscookies

    (@morriscookies)

    Appreciate your prompt response, Thank you very much, it works in pages shortcode, as you mentioned the previous screen shoot was setup in widget which affected by theme setting, but now the “submit” button not working…..

    https://imgur.com/4VCmWSE

    Warmest regards

    Thread Starter morriscookies

    (@morriscookies)

    Sorry, forgot to attach link : https://kaawei.co.uk

    Thread Starter morriscookies

    (@morriscookies)

    Sorry for confusing, please go to link and scroll down to the image below and click on “Do it Now” in order to go to the page of the form

    https://kaawei.co.uk

    https://imgur.com/eYFTxhc

    Thanks.

    Plugin Author codepeople

    (@codepeople)

    Hello @morriscookies,

    Call a button “submit” does not convert it in a submit, button. You are using the free version of the plugin, to include a submit button with the free version of the plugin there are two alternatives:

    – Emulate it with a common button field, entering as its onclick event the following piece of code:

    
    jQuery(this).closest('form').submit();
    

    – Or inserting a “HTML Content” field in the form and entering the input tag in its content:

    
    <input type="submit" value="submit" />
    

    but, if you are using the free version of the plugin the server side operations should be implemented by yourself. Because only the paid versions of the plugin include the following server side operations:

    – Store the collected data into the website’s database.
    – Send notification emails after submit the form.
    – Integrate the form with a payment gateway if it is needed.

    Furthermore, in the paid versions of the plugin insert a submit button is as simple as select the “Yes” option for the attribute: “Display submit button?” in the form’s settings.

    Best regards.

    Thread Starter morriscookies

    (@morriscookies)

    Understood, Thank you very much, i will look into it.

    Take care.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Field Align’ is closed to new replies.