• 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: How to change the spacing of the form fields?

How to change the spacing of the form fields? 17 years 1 week ago #173

Hello again,

Is is possible to change the spacing between the form fields. It seems that they are too crunched together.
Also, is it possible to shift the form to the left or the right?

I would like my form to be positioned to the left. Right now its in an awkward position. Please take a look at the attached image.




Thank you for a great form component. Its about time!
Attachments:
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 17 years 1 week ago #175

  • crazycat
  • crazycat's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 77
check this thread, all you need is described there.
As soon as you make something idiot proof, Nature makes better idiots!!!
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 17 years 1 week ago #245

I read that thread and added the additional CSS classes. But, im not able to get the spacing of the fields to change in any way. Could you maybe tell me what attribute you changed to achieve this?

Thanks.
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 17 years 1 week ago #248

in the config panel of your form is a tab where the code is listed. there you find the code for fieldstyle; change the height of the <tr> by adding the class height, this will give the table row a fixed height and will position the actually fields in the middle of them. adding a height of 30 did the trick for me...

this is the code after i changed it;
&lt;tr style=\&quot;height:30px\&quot;&gt;
    &lt;td align=\&quot;right\&quot; valign=\&quot;top\&quot; class=\&quot;fieldtitleclass\&quot;&gt;{fieldtitle}{validationsign}&lt;/td&gt;
    &lt;td valign=\&quot;top\&quot; class=\&quot;fieldclass\&quot;&gt;{field}&lt;/td&gt;
    &lt;td valign=\&quot;top\&quot; class=\&quot;fielddescclass\&quot;&gt;{fielddesc}&lt;/td&gt;
&lt;/tr&gt;
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 17 years 1 week ago #252

  • Jilic
  • Jilic's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 33
Mine looks like this at the moment.
&lt;tr&gt;
	&lt;td width=\&quot;150px\&quot; align=\&quot;right\&quot; valign=\&quot;top\&quot;&gt;{fieldtitle}{validationsign}&lt;/td&gt;
	&lt;td width=\&quot;150px\&quot; height=\&quot;30px\&quot; valign=\&quot;top\&quot;&gt;{field}&lt;/td&gt;
	&lt;td valign=\&quot;top\&quot;&gt;{fielddesc}&lt;/td&gt;
&lt;/tr&gt;

There are a few options to solve the problem.<br><br>Post edited by: Jilic, at: 2007/05/11 23:09
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 17 years 1 week ago #272

  • ag2simal
  • ag2simal's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 11
I think this will do:

...
<tr style=\"height:30px; padding-top:1px;\">
...

or add padding-top:1px; into css<br><br>Post edited by: ag2simal, at: 2007/05/12 08:04
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 16 years 9 months ago #1180

  • emagin
  • emagin's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
These settings don't seem to impact anything on my forms field spacing.
What should I be looking for to ensure the settings take.
The administrator has disabled public write access.

Re:How to change the spacing of the form fields? 16 years 9 months ago #1183

  • Golfball
  • Golfball's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1


Just change the cellpadding.
Attachments:
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!