Add custom font to banner

I would like to add our font, Poppins, to all text on this banner. Just need the right CSS code

1 Like

Hi @Garden_For_Wildlife :wave:

Sure, we’ve added this code to the Custom CSS field:

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

[class^='Banner__Container-sc'] * {
  font-family: 'Poppins', sans-serif;
}

Check it out and let me know if it helped :slightly_smiling_face:

1 Like