Page 1 of 1

how to resize textarea and checkbox?

Posted: Fri Nov 09, 2012 3:59 pm
by Essay Writing Service

I could not resize neither textarea nor checkbox. I also could not change font size in checkbox. I tried many examples from this forum - css, ajax, tiggzi ... nothing!

please, help me.


how to resize textarea and checkbox?

Posted: Fri Nov 09, 2012 4:26 pm
by Maryna Brodina

Hello! To change font size of component run next JS on screen Load event

Tiggzi('mobilecheckbox').css('font-size', '30px')


how to resize textarea and checkbox?

Posted: Fri Nov 09, 2012 4:51 pm
by Essay Writing Service

it only works for button,not for checkbox!


how to resize textarea and checkbox?

Posted: Fri Nov 09, 2012 6:09 pm
by Essay Writing Service

I found a working combination:

[dsid=checkbox] .ui-btn-text {
font-size: 12px;
}

textarea.ui-input-text {
height : 100px;
}

I hope this helps somebody.


how to resize textarea and checkbox?

Posted: Fri Jan 31, 2014 5:16 am
by Matt6607699

If anyone else is looking to resize the textarea here is how I got it to work.

On page load run JS:

$('textarea[dsid="Textarea_Name"]').css('height',
'350px');

Where Texarea_Name is the name given to your text area in properties.


how to resize textarea and checkbox?

Posted: Fri Jan 31, 2014 5:31 am
by Alena Prykhodko

Matt, thank you for sharing this.