Page 1 of 1

Keep text box same height

Posted: Wed Apr 30, 2014 12:29 am
by David Mott

how can i keep the text boxes the same height as my images which are on the side.i create them to be the same height but when i preview it they are taller and they aren't the same height. Image


Keep text box same height

Posted: Wed Apr 30, 2014 1:07 am
by Alena Prykhodko

Hi David,

Please follow these steps:

1 Open your page in Design mode.

2 Activate "textarea" component by clicking on it.

3 Set in properties field "Class name" as "myImageStaticHeightTextArea".

Image

4 Create CSS asset and fill it with the following code

Image
:
pre

.myImageStaticHeightTextArea{

Code: Select all

 /* you should adjust this value according to your need */ 
 height: 50px !important; 

}
/pre