Change font of the widget

How can I change the entire font of the booking widget?

2 Likes

Hi there, @Micah_Woong_Takayama :wave:

If the font is installed on your website, you can use this CSS code:

* {
  font-family: "Urbanist", sans-serif;
}

If this font isn’t installed on your website, but it’s a Google font, you can use this code in the Custom CSS field:

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Urbanist", sans-serif;
}

Please check it out and let me know if it helped :slightly_smiling_face:

1 Like