Question By
Unsolved

Best Practices for typography - tailswind page builder

solutions

Jun 14th, 2023 06:12 AM

When adding the designs , they come with different font styles etc Whats the best way to make changes to make web page consistent typography

bobbyiliev

Jun 14th, 2023 06:22 AM

Hi there

One option here is to define the font style directly in your page settings:

  • Click on the Page icon in the menu on the left
  • Click the settings button next to the page name
  • Under the CSS input box add:
<style>
body{
    font-family: "Abel";
}
</style>

And change the font to the one that you want to use. ​ Hope that this helps!

Also under the settings, you can customize your Tailwind config as per the official documentation here:

https://tailwindcss.com/docs/configuration

Let me know if you have any questions.

Best,

Bobby