Copia y pega en tu tema o en tu Code Snippets el siguiente código (sección php el código rosa es adicional)
add_action( 'wp_head', function () { ?>
<style>
html, body {
max-width: 100% !important;
overflow-x: hidden !important;
}
</style>
Probar añadiendo esto a Personalizar > CSS adicional
.sticky-element-placeholder.sticky-element-active {
width: 100% !important;
}
Si no funciona ese CSS prueba con este otro:
html, body {
max-width: 100% !important;
overflow-x: hidden !important;
}
Más radical, este otro:
body {
overflow: hidden;
}
Y si usas ancho completo este otro en vez del anterior:
html {
overflow-x:hidden;
}

No hay comentarios.:
Publicar un comentario