• 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: Enlarging message box

Enlarging message box 9 years 1 month ago #30687

Can anyone help me out how I enlarge the message box? (I think it is in the css or java script, but I have no clue how to do this.)

Greets Sjoerd
The administrator has disabled public write access.

Enlarging message box 9 years 1 month ago #30688

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
Provide a working URL to your form, we need to see your form before giving any advice.
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.
The following user(s) said Thank You: sjoerd.dewit

Enlarging message box 9 years 1 month ago #30693

What do you mean by: a working url?

This is the url to the site:
www.stageinternational.nl/index.php/nl/contact
The administrator has disabled public write access.

Enlarging message box 9 years 1 month ago #30706

Hi there,

Can you help me out please?

Greets
The administrator has disabled public write access.

Enlarging message box 9 years 1 month ago #30712

  • bogdan.tataru
  • bogdan.tataru's Avatar
  • OFFLINE
  • Gold Boarder
  • Posts: 174
  • Thank you received: 40
The problem you have is generated by bootstrap.css file that is included with your template.( /templates/yoo_katana/styles/stageinternationl2_donker_menu/css/bootstrap.css)
Here your textarea gets a height of 22px.
On a more precise note by the following declaration:

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  /* Reset */
  border-radius: 0;
  box-shadow: none;
  /* Overrides */
  height: 22px;
  line-height: 22px;
  color: #777777;
  border-radius: 25px;
}

Notice the fixed textarea height set to 22px.
To overwrite this head over to Administration page Extensions >> Module Manager and choose RSContact.
Go to Form Options Tab and to the bottom you will find the Custom CSS field. Here you have, to enter the folowing style code:

textarea{
height:150px;
}

or whatever you want the height to be.

Click on Save button and Refresh your form page. You should see the difference.
My help is not official customer support. To receive assistance, submit a ticket by clicking here
The administrator has disabled public write access.
The following user(s) said Thank You: sjoerd.dewit

Enlarging message box 9 years 1 month ago #30731

Hi there,

Thanks for responding! I really appreciate it!
Unfortunately it doesn't work... Do I need to put more in the custom css of the Module? Or only what you wrote down? The message is a custom field btw. (Therefor I also tried cf1 and I tried to use it on the main textfield.)

Greets!
The administrator has disabled public write access.

Enlarging message box 9 years 3 weeks ago #30761

Can someone please help me with this?
The administrator has disabled public write access.

Enlarging message box 9 years 3 weeks ago #30813

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
Try adding !important to the declaration :
textarea{
height:150px !important;
}

Let me know if it works.
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.

Enlarging message box 9 years 6 days ago #30997

YESSSS!!!
It worked.
And if I want to do the same with the width?

F.E.
textarea{
width:150px !important;
}
The administrator has disabled public write access.

Enlarging message box 8 years 6 months ago #32568

Hi all,

I am back on this topic I started.
I have a standerd form build (see below).
But the automatic send button and email field keeps on coming back. How can I delete them?

Groeten

<form class="uk-form">
<div class="uk-grid uk-grid-width-medium-1-2" data-uk-grid-margin>
<div>
<label class="uk-form-label" for="tm-form-fname">First Name</label>
<input type="text" placeholder="John" class="uk-width-1-1" id="tm-form-fname">
</div>
<div>
<label class="uk-form-label" for="tm-form-lname">Last Name</label>
<input type="text" placeholder="Doe" class="uk-width-1-1" id="tm-form-lname">
</div>
<div>
<label class="uk-form-label" for="tm-form-phone">Phone</label>
<input type="tel" placeholder="+49 555 345 928" class="uk-width-1-1" id="tm-form-phone">
</div>
<div>
<label class="uk-form-label" for="tm-form-email">Email</label>
<input type="email" placeholder="yoo@domain" class="uk-width-1-1" id="tm-form-email">
</div>
</div>
<div class="uk-grid uk-grid-width-1-1" data-uk-grid-margin>
<div>
<label class="uk-form-label" for="tm-form-message">Message</label>
<textarea cols="100" rows="12" placeholder="Your message" class="uk-width-1-1" id="tm-form-message"></textarea>
</div>
<div>
<button class="uk-button uk-button-large uk-button-primary">Send Message</button>
</div>
</div>
</form>
The administrator has disabled public write access.

Enlarging message box 8 years 6 months ago #32575

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
@sjoerd.dewit,

Not sure i understand this. Can you provide more details ? Perhaps a link to the actual form would help...
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!