I’m not using this plugin anymore for other reasons but you can easily make the columns collapse by adding your own css. Example:
@media (max-width: 700px) {
.column {
width: 100%; margin: 0; padding: 0;
}
}
Thank, sounds promising but when I put that code in my theme’s CSS nothing changes here http://slurpie.nl/216-2/
This plugin is really good and I appreciate how clean and simple it is to implement. Not to mention the fact it’s free and lightweight too but having columns side by side on a lower res device is plain bonkers to me and I have no idea why the dev doesn’t “fix” this.
But as dotnordic said the fix is relatively trivial to implement yourself but I did make one !important change:
@media (max-width: 700px) {
.column { width: 100%!important;}
}
I don’t know why this is marked as resolved. I have the very same problem, but it seems not fixed yet.