@ Rob
re: Added the CSS file as you suggested, but it didn’t seem to work
Try this instead:
#cn-cmap span.fn {
font-size: 1.5em !important;
}
re: Now, here’s the big issue
This is being caused by a theme CSS statement which is overriding the template. The solution is to use more targeted CSS in order to override the theme:
#cn-cmap span.cn-image img {
height: auto !important;
width: auto !important;
}
re: light gray areas that stick out from behind the background on all sides and it doesn’t look great.
That is part of the template style. You can remove the border like so:
#cn-cmap span.cn-image-style {
background: none !important;
border: none !important;
}
Since you now have quite a bit of custom CSS, I really suggest using the method outlined in this QuickTip to apply it.
re: I like the option of not having all the entries show up, but only after a search
Follow the solutions in these two posts:
http://connections-pro.com/support/topic/display-entries-only-when-searched-for/#post-290967
http://connections-pro.com/support/topic/display-entries-only-when-searched-for/#post-290973
re: although for SEO purposes, I assume it’s better to show all of them. Is there a way to do so?
The view all link should suffice.
Hope that helps!