<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script> $(document).ready(function() { function moveImages() { if ($(window).width() < 768) { $('.ProductItem-gallery-slides > div:nth-child(n+4)').insertAfter('section.product-details.ProductItem-details'); } else { $('section.product-details.ProductItem-details + div').insertBefore('section.product-details.ProductItem-details').appendTo('.ProductItem-gallery-slides'); } } moveImages(); $(window).on('resize', moveImages); }); </script> <style> @media screen and (max-width:767px) { .ProductItem-gallery-slides-item img { width: 100% !important; } } </style>