Hi,
I'm not sure but I guess a js script from js > avia.js might be causing this.
// -------------------------------------------------------------------------------------------
// small js fixes for pixel perfection :)
// -------------------------------------------------------------------------------------------
function avia_small_fixes(container)
{
if(!jQuery.support.opacity)
{
jQuery('.image_overlay_effect', container).css({'background-image':'none'});
}
setTimeout(function()
{
jQuery('.twitter-tweet-rendered', container).attr('style',"");
}, 500);
var win = jQuery(window),
iframes = jQuery(' iframe:not(.slideshow iframe):not( iframe.no_resize)', container),
adjust_iframes = function()
{
iframes.each(function(){
var iframe = jQuery(this), frame_parent_w = iframe.parent().width(), proportions = 16/9;
if(this.width && this.height)
{
proportions = Math.round(this.width / this.height * 1000) / 1000;
iframes.css({width:frame_parent_w, height: frame_parent_w / proportions});
}
});
};
adjust_iframes();
win.smartresize(adjust_iframes);
}
Let me tag the rest of the support team. See if they have any idea.
Regards,
Ismael