bkurzbuch Posted September 30, 2014 Posted September 30, 2014 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 ""; Quote
ThomasLewis Posted September 30, 2014 Posted September 30, 2014 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. return "such as divorce<br> and child custody"; vs return "such as divorce<br><t>and child custody"; Quote
bkurzbuch Posted September 30, 2014 Author Posted September 30, 2014 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. Quote
ThomasLewis Posted September 30, 2014 Posted September 30, 2014 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. Quote
bkurzbuch Posted September 30, 2014 Author Posted September 30, 2014 Now that is slick. Thank you VERY much. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.