I am developing a dashboard for the customer and here is such a nuance - when viewing the page, the lower blocks are incorrectly displayed, but if you change the size of the browser window, they stand up normally. Here is the work code and the name of the plugin, respectively. .inner_rb_wrapper - shell class to which the JS script is applied (for internal blocks)

 <script src="/template/js/jquery-3.1.1.min.js"></script> <script src="/template/js/plugins/jquery.freetile.min.js"></script> <script> $(window).on('load resize', function() { if ($(window).width() > 425) { $('.inner_rb_wrapper').freetile({ animate: true, elementDelay: 30 }); } }); </script> 
  • one
    Link to the site as if moveton here, besides no problem on the site, I do not see (Ubuntu Chrome). Locate the problem and provide a minimal reproducible example - vp_arth
  • I recommend looking for a solution to a specific plugin to look into the ishews of this plugin, for example, here: github.com/yconst/Freetile/issues/10 The author says that freetile doesn’t work well with% layouts. I try to fix that at some point. - Sasha Omelchenko

0