¿Como puedo configurar el pie de página para que la información de contacto se vea mas grande?. Necesito poner los teléfonos de contacto y el email, pero el la configuración de "footer" no puedo elegir el tamaño de la letra.
If you need to change the footer font size, that should be done via Appearance -> Customize -> Additional CSS. Use Chrome and the developer tool to find the right CSS selector, for example, let't say you need to change the bottom footer area font size:
your selector will be .site-info so you just need to add some custom code like this:
¿Como puedo configurar el pie de página para que la información de contacto se vea mas grande?. Necesito poner los teléfonos de contacto y el email, pero el la configuración de "footer" no puedo elegir el tamaño de la letra.
Hi Sergio,
If you need to change the footer font size, that should be done via Appearance -> Customize -> Additional CSS. Use Chrome and the developer tool to find the right CSS selector, for example, let't say you need to change the bottom footer area font size:
your selector will be .site-info so you just need to add some custom code like this:
.site-info { font-size: 18px; }
Hope that helped