14.9.2016 10:39
Provided you have jQuery, open you dev. tools, adjust the window to designated dimensions and put this to the console in your browser:
You can adjust the 360 px number to any number you need for your breakpoint.
Code:
$(':visible').each(function(){var w = $(this).outerWidth(); if (w<=360) return; console.log(w, this)})
You can adjust the 360 px number to any number you need for your breakpoint.
Coffee phreak!