• 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: Form Width

Form Width 17 years 2 months ago #1751

Hi - thanks for a great component,

I am getting the hang of the settings, but I cannot find the answer to this on the forum.

I need to adjust the width of my form. firstly the width from the left margin. Also the width between the field title and field.

Is this done within the rsform backend or from within the template css? Any examples would be very helpful.

The form is here: eternalnostalgia.co.uk/index.php/compone...com_forme/Itemid,38/

Thanks ;)
The administrator has disabled public write access.

Re:Form Width 17 years 2 months ago #1821

  • alex
  • alex's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 443
  • Thank you received: 3
Hi Nesss,

about the form width. Please go to the Form Style and look at the Form Style code. It should look something like this:
<div align=\"left\" style=\"width:100%\" class=\"componentheading\"><h2>{formtitle}</h2></div>
<form name=\"{formname}\" id=\"{formname}\" method=\"post\" action=\"{action}\" {enctype}>
	<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"forme\">
	{formfields}
	</table>
</form>

Change it to something like:
<div align=\"left\" style=\"width:100%\" class=\"componentheading\"><h2>{formtitle}</h2></div>
<form name=\"{formname}\" id=\"{formname}\" method=\"post\" action=\"{action}\" {enctype}>
	<table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"forme\">
	{formfields}
	</table>
</form>

(i changed <table width=\"100%\" to <table width=\"500\" )
The administrator has disabled public write access.
The following user(s) said Thank You: ludek
  • 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!