The present grid framework we use is a 12 column grid which cannot support 5 columns. It can support 1, 2, 3, 4 and 6 columns. It defaults to 4 columns if you specify 5 columns.
We did not anticipate someone using 6 columns due to space constraints and hence the responsive code is missing.
Pls use the following custom CSS and things should align nicely. We will have this patched in next update.
Thanks for bringing this to our attention –
@media only screen and (max-width: 1024px) {
.pricing-table .twocol {
width: 48%;
margin-right: 2%;
margin-bottom: 20px; }
.pricing-table .twocol.zero-margin {
width: 50%;
margin-right: 0%; } }
@media only screen and (max-width: 479px) {
.pricing-table .twocol, .pricing-table .twocol.zero-margin {
width: 100%;
margin: 0 0 20px 0 !important; } }