Hey urbantreats,
It looks normal for me even on the first page load.
You could add a bit of JavaScript to the “Custom JavaScript” area on the “Customize” tab to force the images to resize though:
var resizeEvent = window.document.createEvent('UIEvents');
resizeEvent .initUIEvent('resize', true, false, window, 0);
window.dispatchEvent(resizeEvent);
Let me know if you need more help!
– Craig
Awesome thanks for your response.
Ill try it out later and let you know.
Also this only happens on desktop is fine on mobile.
Hi,
I have the same problem on my footer here, but you JS snippet did not reolve it:
https://entreprises-uzes-pontdugard.fr/
thanks
Hey pipoulito,
We could try adding a delay as it looks like the issue is that the height for the images is calculated before your page is done resizing:
setTimeout(function(){
var resizeEvent = window.document.createEvent('UIEvents');
resizeEvent .initUIEvent('resize', true, false, window, 0);
window.dispatchEvent(resizeEvent);
}, 750);
Try this snippet instead.
– Craig
hi,
thanks it has resolved the problem !!
thanks
No problem!
Have a great rest of your week.