@ Matthew
RE: I need his Clovis location listed first
Edit the Paul Anderson entry in the Connections admin. You can use drag and drop to order the addresses you wish them to be displayed in :)
Tip, this works for all the repeatable fields in Connections when adding/editing an entry :D
RE: (or designated somehow in bold or something) and was chosen as the preferred. What would you recommend for this situation?
Because you set the address as preferred, a preferred
class is added to the address block which can used as a CSS selector. Actually there are two classes you can use and they are cn-preferred
and cn-address-preferred
.
The cn-preferred
class will be added to all items set as preferred such as address, phone, email, so on…
The cn-address-preferred
will be added to addresses only. So to bold the preferred address you would add this to the these’s custom CSS area:
span.cn-address-preferred {
font-weight: bold;
}
OR, set all preferred items to bold:
span.cn-preferred {
font-weight: bold;
}
Hope this helps!