• Resolved stephenbolu

    (@stephenbolu)


    pls how can i add css class to the button because when a user click on the button it will bring out the popup text i try doing but it only link am seeing there i dont want to app link i want to add css class

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

    (@codepeople)

    Hello @stephenbolu

    A field includes multiple components, the label, the input box (or corresponding control), the instructions for users, etc. If you want to modify the button appearance, you should enter a class name through its “Add CSS Layout Keywords” attribute, for example, my-button, but define it as follows:

    #fbuilder .my-button input { /* Your CSS rules here */ }

    You can define the styles through the “Customize Form Design” attribute in the “Form Settings” tab (https://resources.developers4web.com/cff/images/documentation/form-settings-tab.png).

    Best regards.

    Thread Starter stephenbolu

    (@stephenbolu)

    no i mean the button the submit button how can i add css class to it because it only link you can add to it when a user fill in the from and click on submit button the css class is popup from and i wabt use to see it when there click on the sumbit button

    Plugin Author codepeople

    (@codepeople)

    Hello @stephenbolu

    The submit button is included by the plugin when dynamically when you select the “Yes” option for the “Display submit button?” attribute. The class name assigned to this button is pbSubmit

    If you need controlling the submit button, select the “No” option for the “Display submit button?” attribute and then emulate it via button field.

    For this, insert a button field in the form and enter the following piece of code through its on-click attribute:

    jQuery(this.form).submit();

    Best regards.

    Thread Starter stephenbolu

    (@stephenbolu)

    Okay I will try the other options NO but in the form I did not see submit bottom how will I create one please

    Plugin Author codepeople

    (@codepeople)

    Hello @stephenbolu

    The activate the submit button in the form, select the “Yes” option for the “Display submit button?” attribute in the form settings.

    Best regards.

    Thread Starter stephenbolu

    (@stephenbolu)

    okay but when i try this

    i add the button to the from in the field setting in the button i add jQuery(popmake-4575).submit(); in the OnClick event and i click on NO in the Display submit button? but it not working why normal i suppose to bring out the popup text off the css class but it not working

    Plugin Author codepeople

    (@codepeople)

    Hello @stephenbolu

    No. If you want to submit the form, in the button settings, you must enter:

    jQuery(this.form).submit();

    Best regards.

    Thread Starter stephenbolu

    (@stephenbolu)

    Where will it redirect them to after submitting

    Plugin Author codepeople

    (@codepeople)

    Hello @stephenbolu

    What is the plugin version you have installed?

    Best regards.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘css code’ is closed to new replies.