Enlarge letters newsletter / Debut Theme

Topic summary

Agrandissement du texte « Join the drip » au-dessus du bloc newsletter, uniquement sur mobile, dans le thème Shopify Debut.

  • Problème : le site étant protégé par mot de passe, une vérification du front-end était initialement demandée.
  • Solution proposée : ajouter une règle CSS dans le fichier theme.css (dossier Assets) pour augmenter la taille de police du titre de la newsletter :
    • .site-footer-newsletter__one-half .site-footer__item-inner p.h4 { font-size: 20px; }
  • Étapes : ouvrir l’éditeur de thème → Assets → theme.css → coller le code en bas → sauvegarder → vérifier en vue mobile.

Résultat : la solution a été confirmée comme répondant exactement au besoin. Une capture d’écran était incluse pour illustrer l’élément concerné.

Summarized with AI on February 25. AI used: gpt-5.2.

Hey,

I would like to know how can I enlarge the size of the writing of ‘‘Join the drip’’ above the newsletter but only for the mobile version ?

Thanks

Link : https://relentless-clothingz.myshopify.com

Password : I will send you in private.

Hi @Ulysse1300 ,

Welcome to the Shopify community! Thanks for asking a good question on community. I’m here to help you.

the URL you have shared here is password protected. For your better help I need that to view the frontend. So that I can better help you.

Thanks

1 Like

Hi @Ulysse1300 ,

Below is the code please copy and paste it to your theme.css file.

.site-footer-newsletter__one-half .site-footer__item-inner p.h4 {
    font-size: 20px;
}

Steps:

  1. Open theme editor and look for the asset folder.

  2. Open theme.css file under asset folder.

  3. Paste the above code at the bottom of the file.

  4. Save the file.

  5. Now see your page on mobile view.

Thanks

1 Like

Thanks, it’s exactly what I was looking for.