• 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 Input Field Length

Form Input Field Length 6 years 8 months ago #37204

  • smarsh
  • smarsh's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
I made a template override for the Submit layout.

I want to adjust the length of the input boxes but don't see any of the classic HTML code to do this - I see:

// email
$label = $this->form->getLabel('email');
if ($this->user->get('id')) {
$input = $this->escape($this->user->get('email'));
} else {
$input = $this->form->getInput('email');
}
$this->field->showField($label, $input, array('class' => 'clearfix'));



How do I accomplish this?
Last Edit: 6 years 8 months ago by smarsh.
The administrator has disabled public write access.

Form Input Field Length 6 years 5 months ago #37542

  • dragos
  • dragos's Avatar
  • OFFLINE
  • Administrator
  • Posts: 559
  • Thank you received: 102
Hello,

You can try a CSS approach on this, for example, you can add the following declaration into your template css file:
.com-rsticketspro-submit-ticket .form-horizontal input, select {
    width: 70%;
}
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!