Hello is there any way I can swipe columns on mobile?
http://jillshalvis.nashalamadesigns.com/lost-and-found-sisters-3/
ON desktop you can see the column 2 on the right side but once it goes to mobile I want it to go to the top instead of bottom
Hello is there any way I can swipe columns on mobile?
http://jillshalvis.nashalamadesigns.com/lost-and-found-sisters-3/
ON desktop you can see the column 2 on the right side but once it goes to mobile I want it to go to the top instead of bottom
Hi Nasha,
Thanks for writing in! You can assign a unique CSS classes for your Columns. For example, you can add mobile1 for the second Column in desktop and mobile2 for the first Column in desktop.

Then you can add the following JavaScript code into your X/Pro -> Theme Options -> JS area.
(function($) {
if ($(window).width() < 480) {
jQuery( ".mobile1" ).insertBefore( ".mobile2" );
}
})(jQuery);
Hope that helps.
It worked! THanks!
You’re most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.