@ delfinparis
re: I Purchased the CSV plugin to make it work easyer
Support for commercial plugins is not permitted on the wp.org support forums. You should post your support related questions here for the cMap template.
https://connections-pro.com/support/forum/template/cmap/
re: Right now I’m only showing one column of entries, but I’d like to make it two or three columns. I can’t figure out how to do this in the back-end, and I didn’t see anything on the support site. Not sure if it’s strictly CSS or if there’s a toggle.
This is because it does not support a columnar layout, just as the demo and live site showcases show, it is a single column layout. That said, other users have customized the template’s CSS to show multiple columns with varying levels of success.
Something like this will get you started:
#cn-cmap div.cn-list-section-head {
display:none !important;
}
#cn-cmap div.cn-list-row,
#cn-cmap div.cn-list-row-alternate {
float: left;
margin-right: 10px;
height: 160px;
width: 23rem;
}
#cn-cmap div#cn-list-foot {
clear:both;
}
You should remove the custom CSS you’ve already added though or this will not work.
Hope that helps!