To extend the responsiveness to my site, I've added the below JQuery to handle situations when the screen width is below 1300px. It almost works perfectly, however - it doesn't take into account the screen size updating, I.e. when screen is less than 1300 it does apply the appends, however if I then adjust the screen to above 1300px it will keep the conditional changes.
$(window).on('resize',function() { if ($(this).width() < 1300) { $("#id").appendTo("#div"); $("#id").appendTo("#div"); } });