Form Wizard Pro add-on generated form layout issue

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
6/16/2011 6:57:21 PM
Gravatar
Total Posts 14

Form Wizard Pro add-on generated form layout issue

Hi,

We just purchased Form Wizard Pro license today and I created a test Contact Us form with it. The first thing that seems to be a problem is that generated form shows the label and entry control for a question on a separate line. We want both control and a label for it to be on the same line. I thought it should be pretty straight forward to do since there is a custom CSS you could use for the row, but when I looked at the source code of the generated form I noticed that there is actually <br class="clear"> tag inserted between label and corresponding entry field. I could not find any way to configure this. It must be using some template to build the form, right? Is there a way to change it?

Please advice,

thanks 

6/17/2011 6:21:22 AM
Gravatar
Total Posts 18439

Re: Form Wizard Pro add-on generated form layout issue

Hi,

It can be done. If you edit the styleformwizard.css file in your skin folder, look for this line:

.formwizard .settingrow .settinglabel {width:100%;  }

and either comment it out or remove it.

Then add this at the bottom:

.formwizard br.clear{ display:none;}

If you wanted to only do it on specific forms, you could add a custom class in the settings for Form Wizard and then instead of the above use:

.yourcustomformclass br.clear{ display:none;}

or if you only wanted to do it on specific questions on a specific instance of Form Wizard, you could add a custom class to the question and then do it like this:

.yourcustomformclass .yourquestionclass br.clear{ display:none;}

Hope that helps,

Joe

6/27/2011 7:47:04 PM
Gravatar
Total Posts 14

Re: Form Wizard Pro add-on generated form layout issue

Thank you, Joe! This worked for us.

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