List Manager Forum

Text area width

Usuario moon_456 2012-05-08 16:18:00

Hello,

is it possible to change the text area field (after clicking the 'Add' button) customized width and height? At this moment a visitor needs to drag the area to have a good look at the words that are typed. In my case I want a text area field width from 500px an 50px height.

Kind Regards,

Davy.

Moonsoft support 2012-05-08 17:54:02

Hello,
you have the 'size' parameter at configuration step, which defines the number of columns for the textarea, so you could fix the width expected. But in order to configure both height and width, you should add a new style class to the css you are using. By default:

joomla\modules\mod_listmanager\assets\css\default.css


you can add this section:

.lm_list_tableform textarea{
width:500px;
height:50px;

}

and you will get all listmanager textareas using that configuration.

Hope this helps, regards

Edited by MSTeam - 08.05.2012 17:54

Usuario moon_456 2012-05-14 14:49:12

Hello,

The change size option in the configuration worked for me. I also tried to change the css, but that didn't work for me.

Thank you!