@ Dave
re: The desired display order is individual name alphabetically within business name alphabetically
Sure, add them as individuals making sure to add the business name into the organization field. The use the order_by shortcode option to define a custom sort. Something like this should do the trick:
[connections order_by="organization,last_name"]
re: The client would like the business name more pronounced than the individual name so I was hoping to use CSS to modify their font size and weight.
I answered this in my initial reply. But, I had a question… now that I have a bit more detail… add this to the theme’s custom CSS area:
#cn-cmap span.fn {
font-size: 30px;
font-weight: 500;
}
Change as needed.
Anything can be changed with CSS in cMap as that is how it is styled to being with you’ll just need more specific selectors in order to override the default styling. Also, do not forget to use the Style Panel in the Template Customizer for cMap.
Hope that helps!