Page 1 of 1

Increase input width/size

Posted: Sat Apr 19, 2014 2:00 pm
by nigelfaraday67
Hi, could you clarify please how I could increase the width and/or height of the input fields, e.g. the 'Your Question' field here:

https://dl.dropboxusercontent.com/u/905 ... nsions.PNG

Would there be some custom css I should use? Thank you :)

Posted: Sat Apr 19, 2014 2:42 pm
by Jean-Christophe Bisoux
Hi,

you can use somethink like that in the custom CSS

Code: Select all

input[type=text]{width:xxpx;height:xxpx}
Regards,
JC

Posted: Sat Apr 19, 2014 6:31 pm
by nigelfaraday67
Thanks, I'll try this, how would I have the field name appear before the field input, e.g.

Email: [email input field]

Thank you :)

Posted: Sat Apr 19, 2014 8:13 pm
by Jean-Christophe Bisoux
Hi,

Directly in WPS it's not posible, because the field is normally for a sidebar with a short's width.

But you can try with the jquery custom, for exemple use this code for each input and replace FNAME with the input's name

Code: Select all

jQuery("input[name$='FNAME']").before("Your text");
Regards,
JC