Posts: 3
Threads: 1
Joined: Aug 2022
hello, i have a series of questions i ask visitors, created using the "extra fields" extension module. the fields are in a certain order, i.e., name, country, region, selection 1, selection 2, selection 3, comment area. when visitors fill them out, however, their responses come out in a different order - selection 1, selection 2, country, selection 3, region, comment... and i can't figure out how to change it.
Posts: 2,895
Threads: 59
Joined: Jun 2010
In the module there's a "Sort" field where you can enter "1", "2", "3" etc to control the order of responses in the comment.
Have
you completed
the interview?
Posts: 3
Threads: 1
Joined: Aug 2022
thank you! works great. congratulations on your wonderful work.
one last thing, is it possible to change the size of the core comment text area, or disable it entirely and replace it with modules from the added fields? the main comment area is just a little big for my purposes; i'd like it to be the same size as the regular text areas...
Posts: 2,895
Threads: 59
Joined: Jun 2010
If you enable the CSS Editor module, then paste this into the big text area:
Code:
.cmtx_comment_field_active {
height: 100px !important;
}
Adjust the height to your own preference and add a width if needed.
Have
you completed
the interview?
Posts: 3
Threads: 1
Joined: Aug 2022
that worked perfectly, thank you!