I have the exact same issue. Did you ever find an answer?
same thing here – on smaller devices columns display one after the other. i’ve been playing with css to fix it, but i could not.
is there a way to disable plugin for smaller devices ? ?
i have seen a possible solution in this thread:
https://ww.wp.xz.cn/support/topic/possible-to-disable-this-plugin-for-mobile-devices?replies=5
but it does not work for me.
columns start messing because twenty-fifteen css:
@media screen and (min-width: 38.75em)
but i don’t know exactly why !
sorry for overspaming, here’s the end of the story:
i had added margins to columns using “!important” – i deleted those and added “!important” after both. this has worked out for me so far !
@media screen and (max-width: 600px) {
.full_width, .one_half, .one_third, .two_third, .one_fourth,
.three_fourth, .one_fifth, .two_fifth, .three_fifth,
.four_fifth, .one_sixth {
clear: both;
width: 100%;
margin-left: 0;
margin-right: 0;
}
}