How can I add links to header titles in minimal theme?

Topic summary

Se encontró una solución para añadir enlaces a los títulos de secciones del footer en el tema Minimal, como “Follow Us” o “Newsletter”. El problema era que algunos títulos no venían enlazados por defecto, a diferencia de “Latest News”, que ya apunta al blog.

Pasos indicados:

  • Editar footer.liquid y localizar el bloque deseado, por ejemplo {% when 'newsletter' %}.
  • Sustituir el encabezado <h3 class="h4">{{ 'layout.footer.newsletter_title' | t }}</h3> por una versión con etiqueta <a href="..."> para añadir el enlace.
  • Corregir el estilo/estado “active” del enlace cambiando <div class="grid__item {{ column_width }} "> por <div class="grid__item {{ column_width }} site-footer__links">.

Resultado:

  • El título del bloque del footer puede enlazar a una página personalizada.
  • También se resolvió un problema visual de hover/active causado por las clases CSS.

La conversación queda cerrada con una solución práctica; la imagen solo servía para mostrar el área del footer afectada.

Summarized with AI on March 6. AI used: gpt-5.4.

Hey guys, I’m using minimal theme and I was wondering if there was a way to add links to the block/section titles on the footer, such as “Follow Us” and “Newsletter”.

“Latest News” already automatically links to the blog page, but I wanted to have others link to pages as well. Thanks for the help!

morninmug.com

password: zaldad

With enough digging, I found the solution. Under footer.liquid, find the block/section you want.

I was looking for newsletter, so I found “{% when ‘newsletter’ %}”

Replace this line under your section (still newsletter in my case):

|

{{ ‘layout.footer.newsletter_title’ | t }}

|
| - |

With this:

|

{{ ‘layout.footer.newsletter_title’ | t }}



|
| - |

But that’s not all. Now the link will always be “active” because some sort of hovering thing is broken. To fix that, You have to replace this line under your section:

With this:

Hope this helps someone, cheers!