diff --git a/ver_formulario_enviado.php b/ver_formulario_enviado.php
index 8e7136e..0ed0959 100644
--- a/ver_formulario_enviado.php
+++ b/ver_formulario_enviado.php
@@ -1032,7 +1032,7 @@ function _addExamWizardHtml(string $cid): string {
}
if (($_saltarSeccion && !$modoEditar) || $_mpSkipSec) continue; ?>
>= esc2($campo['label'] ?? '') ?>
+ = ($_saltarSeccion && $modoEditar) ? 'style="max-height:0;opacity:0;overflow:hidden;pointer-events:none;margin:0!important;padding:0!important"' : '' ?>>= esc2($campo['label'] ?? '') ?>
{
el.style.opacity = activo ? '1' : '0';
el.style.overflow = activo ? '' : 'hidden';
el.style.pointerEvents = activo ? '' : 'none';
- el.style.margin = activo ? '' : '0';
- el.style.padding = activo ? '' : '0';
+ if (activo) { el.style.removeProperty('margin'); el.style.removeProperty('padding'); }
+ else { el.style.setProperty('margin','0','important'); el.style.setProperty('padding','0','important'); }
});
});