@ Robert
re: You saw the site after I changed the width of tiles. Before I changed the width (the were about 240px) I still only had two columns.
That’s possible. If the screen you are viewing the page on is smaller the theme reduces the width of the page content area which in turn leaves less width available for the tiles which then in turn reduces the possibility of more columns. The number of columns that will be shown is the tile width divided by the page content width set by the theme.
That said, with a width of 274px even at a small window width of 1141px there were three columns of tiles in my testing on your site. Can you please change the width from 340px to at least 274px so I can see what might prevent the theme’s full page content width from being utilized?
re: Is there a way to tell it how many columns to display?
If the theme has a custom CSS area, add the following:
#cn-tile-plus .cn-list-section-head {
display: none !important;
}
#cn-tile-plus .cn-list-row-alternate,
#cn-tile-plus .cn-list-row {
display: inline-block;
float: none !important;
width: 33% !important;
box-sizing: initial;
}
#cn-tile-plus div.cn-entry {
display: inline-block;
width: 100% !important;
box-sizing: border-box;
}
If the theme does not, then you can use the JP Custom CSS plugin to add the above CSS.
On narrow screens such as mobile devices this does get a bit squished.
Hope that helps.
