#1
|
|||
|
|||
![]()
I have the code listed below. i need to put in a space or two after the break. I know the code for a space should be   but I'm unsure of the correct format to get it to work and if I need additional spacing do i just add the same code again? Thank You
if (Field("Family Law") == "Yes") return "(such as divorce<br>and child custody)"; else return ""; |
#2
|
||||
|
||||
![]()
You can add multiple non breaking spaces in succession but you might consider just setting up a tab. It will give you more control over the exact positioning.
Code:
return "such as divorce<br> and child custody"; vs return "such as divorce<br><t>and child custody"; |
#3
|
|||
|
|||
![]()
That would be great but, then how do you control the length of the tab. If you can't tell I'm a little new to javascript. Thank you for the help.
|
#4
|
||||
|
||||
![]()
When you click the text box to open the Variable Text Editor you will see a "Tabs..." button. Make sure you select all the text or the whole line the rule is on. With it highlighted, click the button and you can change the settings in there.
You can also do it programmatically by using the paragraph <p> tag which is outlined in the TagsRefGuide PDF under markup tags. |
#5
|
|||
|
|||
![]()
Now that is slick. Thank you VERY much.
|
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|