Form Wizard Pro - Spacer Element

This is a forum to suggest new features for mojoPortal. 

This thread is closed to new posts. You must sign in to post in the forums.
4/27/2012 1:42:29 PM
Gravatar
Total Posts 20
Dale Innis, What was, What is and What will be is all in the hands of God, but an application is in the hands of the developer, Lord Help us!

Form Wizard Pro - Spacer Element

Basically an element that would just hold the space with nothing showing.

 

I.e. I am doing three columns with headers..

 

Date              xxxx                xxxxx          Miles traveled

xxxx               From              To              xxxxx

Truck            text elem.   text elem.      text elem.

Car               text elem.    text elem.      text elem.

van               text elem.    text elem.      text elem.

 

 

Where the xx's are an empty element that allows you to flaten the groups and put 2 + groups side by side on the page.

I was currently able to do the above format using and instruction block with just a . in it but the . still shows on the page.

4/27/2012 1:50:09 PM
Gravatar
Total Posts 18439

Re: Form Wizard Pro - Spacer Element

instead of . use one or more no break space:

ie

  

or

  

note that you'll have to enter those in the html source view of the editor.

Hope that helps,

Joe

4/27/2012 2:28:11 PM
Gravatar
Total Posts 20
Dale Innis, What was, What is and What will be is all in the hands of God, but an application is in the hands of the developer, Lord Help us!

Re: Form Wizard Pro - Spacer Element

   That worked thanks, 

 

&

<h5>
&nbsp;&nbsp;</h5> was required to keep the spacing vertically when the non-empty fields are of type header3

4/27/2012 2:34:19 PM
Gravatar
Total Posts 18439

Re: Form Wizard Pro - Spacer Element

I would not use h elements with empty spaces, that isn't semanticly correct.

If you need to pad it I'd use <span class='spacer'>&nbsp;&nbsp;</span>

then in CSS

span.spacer { display:block; padding 10px; }

adjust the padding to your needs

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