• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: submit and reset button next to each other

submit and reset button next to each other 14 years 5 months ago #12087

  • navibd
  • navibd's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
i have abig problem with 2 button at the end of my form.
reset button is beneath the submit button.
what should I do ?
I want Reset be next to Submit Button ...

another Question.

is there any way to add some text at the top of My form... ?
The administrator has disabled public write access.

Re:submit and reset button next to each other 14 years 5 months ago #12118

It could be the layout that you are using for your form, if you click on the "form layout" tab you can choose different styles or if you some HTML skills then underneath the layout choices there is a box with the layout in code if you untick the box next to "Auto Generate Layout" and change the code manually. In regards to addig text to your form there is an option for "free text" in the components section where you can put in text although if you have unticked the auto generate layout box anything you add after that point will not appear in the form, hope this helps if not let me know.

For all your call recording needs visit us at Call Recording
Last Edit: 14 years 5 months ago by George_Rogers.
The administrator has disabled public write access.

Re:submit and reset button next to each other 14 years 5 months ago #12138

  • andreic
  • andreic's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 745
  • Thank you received: 66
Hello,

It seems you are confusing RSForm!Pro with RSForm!. RSForm! does not have a "Form Layout" tab, you can add the text you want to display at the top of your form directly in the "Form Style" tab, or add a new free text field and display it as your first form field.

In order to display the submit and reset buttons on the same line please perform the following steps:

- go to Components > RSForm! > Manage forms > select your form > edit your submit button and replace the code from the "Edit field style":
<tr>
	<td align="right" valign="top">{fieldtitle}{validationsign}</td>
	<td valign="top">{field}</td>
	<td valign="top">{fielddesc}</td>
</tr>

with
<tr>
	<td align="right" valign="top"></td>
	<td valign="top">{field}

- next edit the reset button (make sure that the reset button is the next field after the submit button) and replace:
<tr>
	<td align="right" valign="top">{fieldtitle}{validationsign}</td>
	<td valign="top">{field}</td>
	<td valign="top">{fielddesc}</td>
</tr>

with
        {field}</td>
	<td valign="top">{fielddesc}</td>
</tr>
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!