Textbox width/height in survey

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
5/24/2013 9:51:32 AM
Gravatar
Total Posts 62

Textbox width/height in survey

The current textbox width is too small in survey module, is there a way to expand the width/height to allow for comments?

Thanks.

5/24/2013 11:07:45 AM
Gravatar
Total Posts 18439

Re: Textbox width/height in survey

all such things can be solved by css. You need to study the source of the page to figure out how to change the css to do what you want.

typically a feature will have a custom class on a container div somewhere, so for survey probably something like 

.survey textarea { width: 350px; }

or if not a textarea then

.survey input[type="text"] { width:350px; }

6/13/2013 1:17:20 PM
Gravatar
Total Posts 62

Re: Textbox width/height in survey

Well, I was able to partially resolve this using your suggestion, but there is no textarea. Is there anyway to add that? Also, survey input boxes don't have any class I had to do this workaround:

.survey .settingrow input[type="text"] { width:500px; }

 

6/13/2013 1:25:07 PM
Gravatar
Total Posts 18439

Re: Textbox width/height in survey

If you don't like some things about the Survey feature you may want to consider purchasing Form Wizard Pro which is also suitable for surveys and has a lot more flexibility. I have no future plans to ever improve the free survey feature we include in mojoPortal because I make my living selling the add on features. You can try Form Wizard Pro on our demo site to see how it works.

6/13/2013 1:34:57 PM
Gravatar
Total Posts 62

Re: Textbox width/height in survey

Thanks Joe. I didn't realize there was a paid addon.

You must sign in to post in the forums. This thread is closed to new posts.