From 64de88fd574303577c35343b2573d1d77dc37f15 Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Thu, 6 Nov 2025 21:01:24 -0600 Subject: [PATCH] [Issue #108] Eliminar espacio en blanco entre navbar y hero section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PROBLEMA: Existía un gap/espacio visible entre el navbar y el hero section. CAMBIOS: 1. header.php (línea 88): - Eliminada línea en blanco después de - HTML ahora termina directamente sin saltos extra 2. style.css - .navbar (línea 696): - Agregado margin-bottom: 0 - Asegura que navbar no tenga margen inferior 3. style.css - .hero-title (línea 816): - Agregado margin-top: 0 - Asegura que hero no tenga margen superior RESULTADO: ✓ Navbar y hero section pegados sin espacio ✓ Diseño limpio y continuo ✓ Sticky navbar sigue funcionando Fixes #108 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- wp-content/themes/apus-theme/assets/css/style.css | 2 ++ wp-content/themes/apus-theme/header.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/apus-theme/assets/css/style.css b/wp-content/themes/apus-theme/assets/css/style.css index 71e0d18b..a3181984 100644 --- a/wp-content/themes/apus-theme/assets/css/style.css +++ b/wp-content/themes/apus-theme/assets/css/style.css @@ -693,6 +693,7 @@ img { background-color: var(--color-navy-primary) !important; box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15); padding: 0.75rem 0; + margin-bottom: 0; transition: all 0.3s ease; } @@ -813,6 +814,7 @@ img { background: linear-gradient(135deg, var(--color-navy-primary) 0%, var(--color-navy-light) 100%); box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25); padding: 3rem 0; + margin-top: 0; } .hero-title h1 { diff --git a/wp-content/themes/apus-theme/header.php b/wp-content/themes/apus-theme/header.php index e9dceeb1..05e8fde8 100644 --- a/wp-content/themes/apus-theme/header.php +++ b/wp-content/themes/apus-theme/header.php @@ -84,4 +84,4 @@ - + \ No newline at end of file