From 58ceec7beef7cedee77aada0b844533af7d85057 Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Sat, 8 Nov 2025 11:01:23 -0600 Subject: [PATCH] Fix Footer Contact Form: Eliminar overrides CSS de Bootstrap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Eliminados todos los overrides de .contact-info h6 y .text-muted para usar SOLO estilos default de Bootstrap 5, tal como lo hace el template. Archivos modificados: - footer-contact.css: Eliminado font-weight: 600 y font-size de h6 - footer.css: Eliminado font-weight: 400 de h6 - style.css: Eliminado font-weight: 400 de h6 Motivo: Template usa Bootstrap puro sin custom CSS para estos elementos. Issue: #128 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../apus-theme/assets/css/footer-contact.css | 23 +++---------------- .../themes/apus-theme/assets/css/footer.css | 4 +--- .../themes/apus-theme/assets/css/style.css | 4 +--- 3 files changed, 5 insertions(+), 26 deletions(-) diff --git a/wp-content/themes/apus-theme/assets/css/footer-contact.css b/wp-content/themes/apus-theme/assets/css/footer-contact.css index 501d7ce1..d5da8ddf 100644 --- a/wp-content/themes/apus-theme/assets/css/footer-contact.css +++ b/wp-content/themes/apus-theme/assets/css/footer-contact.css @@ -25,16 +25,7 @@ Contact Info Styles ==================================================================== */ -.contact-info h6 { - font-weight: 600; - font-size: 0.95rem; - color: #212529; - margin-bottom: 0.25rem; -} - -.contact-info .text-muted { - font-size: 0.9rem; -} +/* NOTA: NO sobrescribimos h6 ni .text-muted para mantener estilos Bootstrap default del template */ .contact-info i { flex-shrink: 0; @@ -259,13 +250,7 @@ font-size: 0.95rem; } - .contact-info h6 { - font-size: 0.9rem; - } - - .contact-info .text-muted { - font-size: 0.85rem; - } + /* ELIMINADO: sobrescrituras de h6 y .text-muted para mantener Bootstrap default */ .contact-info i { font-size: 1.1rem !important; @@ -343,9 +328,7 @@ background-color: rgba(33, 37, 41, 0.15) !important; } - .contact-info h6 { - color: #f8f9fa; - } + /* ELIMINADO: sobrescritura de h6 para mantener Bootstrap default */ #footerContactForm .form-control { background-color: #212529; diff --git a/wp-content/themes/apus-theme/assets/css/footer.css b/wp-content/themes/apus-theme/assets/css/footer.css index f3e9afa7..a50ba149 100644 --- a/wp-content/themes/apus-theme/assets/css/footer.css +++ b/wp-content/themes/apus-theme/assets/css/footer.css @@ -57,6 +57,4 @@ footer .btn-primary:hover { color: var(--color-orange-primary); } -.contact-info h6 { - font-weight: 400; -} +/* ELIMINADO: .contact-info h6 para mantener Bootstrap default del template */ diff --git a/wp-content/themes/apus-theme/assets/css/style.css b/wp-content/themes/apus-theme/assets/css/style.css index 49091098..90e5a3b5 100644 --- a/wp-content/themes/apus-theme/assets/css/style.css +++ b/wp-content/themes/apus-theme/assets/css/style.css @@ -1270,6 +1270,4 @@ footer .btn-primary:hover { color: var(--color-orange-primary); } -.contact-info h6 { - font-weight: 400; -} +/* ELIMINADO: .contact-info h6 para mantener Bootstrap default del template */