Estoy usando jQuery y parece que no puedo encontrar una manera de mover la superposición más arriba.
En Chromw DevTools, pude ver top: 469.5px; y cuando lo cambié a top: 200px; en realidad sube.
element.style { ... top: 469.5px; ... } Pero no puedo hacer que el código funcione agregando el elemento top como se muestra a continuación.
jQuery( function() { jQuery( "body" ).block( { message: "<?php esc_html_e( 'Please wait. This may take a few minutes. Do not refresh page.', 'rife-free' ); ?>", overlayCSS: { background: "#fff", opacity: 0.6, top: "200px" }, css: { padding: 20, textAlign: "center", color: "#555", border: "3px solid #aaa", backgroundColor:"#fff", cursor: "wait", } }); });