Hi, we have a few songs that require two texts for men and women to be displayed at the same time. I lined out two columns with spaces, but because of the font they aren't lined out nicely. I tried with formatting tags to create a html table with two columns and set the width style property of the td tag to 50%. But the table is printed in the center of the verse and the columns are placed after each other with no space between them. What is the easiest way to accomplish two columns in a verse where the first column starts left and the second column starts in the center.
Comments
Maybe you could do it like this?
Men men men men
Men men men men
Men men men men
Women women
Women women
Women women
Men men men men2
Men men men men2
Men men men men2
Women women2
Women women2
Women women2
The left-align tag is defined as: <div style="position:absolute;text-align:left;"> (with End HTML: </div>)
The right-align tag is defined as: <div style="position:absolute;text-align:right;width:100%;"> (with End HTML: </div>)
Then we use the left & right align tags like this to keep them on the same line, but split into columns:
{left}Women line 1{/left}{right}Men line 1{/right}
{left}Women line 2{/left}{right}Men line 2{/right}
etc...