In my form I have a multi user field. In a corresponding list view I want to display all users in one record below each other. Is that possible? CSS on the form field macro or something? Thanks for any help
Hi
If you are after a CSS only solution then you can place something like this on your page (CSS stylesheet macro or within the HTML macro, style tags)
span[cf-field=delegates]>a::after {
content: "\A";
white-space: pre;
}
Here I have a field "delegates" that is of type multi-user field. You need to change this to your multi-user field's name
Alex
PS, I should say thank you to Chris, https://css-tricks.com/injecting-line-break/ for this technique
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.