🔧 Quick Fix for Language Page Buttons

Copy and paste this code into each language page's footer section:

For Spanish Page (index-es.html)

Replace the entire footer section with:

<footer class="footer"> <div style="max-width: 800px; margin: 0 auto;"> <h3 style="color: #D4AF37; margin-bottom: 20px; text-align: center;">Enlaces Rápidos</h3> <div class="button-grid"> <a href="/30-day-devotional.html" class="lang-button">📖 Devocional de 30 Días</a> <a href="/prayer-app.html" class="lang-button">🙏 Aplicación de Oración</a> <a href="/all-resources.html" class="lang-button">📚 Todos los Recursos</a> <a href="/mobile-app.html" class="lang-button">📱 Aplicación Móvil</a> <a href="/daily-bread.html" class="lang-button">🍞 Pan Diario</a> <a href="/donate-biblical.html" class="lang-button">💰 Donar</a> <a href="/testimonies.html" class="lang-button">✨ Testimonios</a> </div> <p style="margin: 20px 0; font-size: 16px;">📧 contact@christianfaithweb.org</p> <div style="margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);"> <p style="font-size: 14px; opacity: 0.8;">© 2026 Christian Faith Light. Todos los derechos reservados.</p> <p style="margin-top: 10px;"> <a href="/index-en.html" style="color: #D4AF37; margin: 0 10px;">English</a> <a href="/index-zh.html" style="color: #D4AF37; margin: 0 10px;">中文</a> <a href="/index-es.html" style="color: #D4AF37; margin: 0 10px;">Español</a> <a href="/index-pt.html" style="color: #D4AF37; margin: 0 10px;">Português</a> <a href="/index-fr.html" style="color: #D4AF37; margin: 0 10px;">Français</a> </p> </div> </div> <style> .button-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin: 20px 0; } .lang-button { display: block; padding: 10px; background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 5px; text-decoration: none; text-align: center; font-size: 14px; transition: all 0.3s; } .lang-button:hover { background: rgba(212, 175, 55, 0.2); border-color: #D4AF37; transform: translateY(-2px); } </style> </footer>

For Portuguese Page (index-pt.html)

Replace button text with:

📖 Devocional de 30 Dias 🙏 Aplicativo de Oração 📚 Todos os Recursos 📱 Aplicativo Móvel 🍞 Pão Diário 💰 Doar ✨ Testemunhos

For French Page (index-fr.html)

Replace button text with:

📖 Dévotionnel de 30 Jours 🙏 Application de Prière 📚 Toutes les Ressources 📱 Application Mobile 🍞 Pain Quotidien 💰 Faire un Don ✨ Témoignages

Critical Fixes Needed:

  1. Update footer buttons on all language pages
  2. Fix #testimonies links to point to /testimonies.html
  3. Ensure donate button is last on donation pages
  4. Test all buttons across all languages

Test Your Fixes:

After making changes, test at: