jQuery(document).ready(function($) { $('body .before-after-gallery .et_pb_gallery_title').each(function () { $(this).insertBefore($(this).prev('body .before-after-gallery .et_pb_gallery_image')); }); // $('body .our-services-covers figure').each(function () { // console.log('Working each1'); // //$(this).insertBefore($(this).prev('body .our-services-covers h2')); // }); $('body .our-services-covers figure').each(function () { $(this).insertBefore($(this).prev('body .our-services-covers h2')); }); if ($(window).width() > 767) { console.log('Screen size greater than 767px'); $('body .our-services-covers figure').each(function () { $(this).insertBefore($(this).prev('body .our-services-covers h2')); }); }else{ console.log('Screen size less than 767px'); $('body.page-id-16973 .our-services-covers').insertAfter($('body.page-child .service-page-intro')); $('body.page-id-16961 .our-services-covers').insertAfter($('body.page-child .image-row')); // Intumescent Fireproofing Paint and Coating $('body.page-id-16961 .image-row .internal-service-image').insertAfter($('body.page-child .service-page-intro')); // Intumescent Fireproofing Paint and Coating } $(window).scroll(function() { if ($(document).scrollTop() > 100) { $('body header').addClass('mobile-sticky-menu'); } else { $('body header').removeClass('mobile-sticky-menu'); } }); // $(window).scroll(function() { // if ($(document).scrollTop() > 100) { // $('body .headroom--pinned .cstheme-logo img').attr('src','/wp-content/uploads/2020/03/freshkoru-sticky.png'); // } // else { // $('body .headroom--pinned .cstheme-logo img').attr('src','/wp-content/uploads/2020/03/freshkoru-logo.png'); // } // }); // $( "body .each-testimonial .cs_testimonials_descr" ).before( "" ); });