Viewing 1 replies (of 1 total)
  • Hello @boobymonster. To apply a font to a specific div tag, the div tag must have an id or a class, or a way to specify it through other CSS selectors.

    First select the font in the Google Fonts settings page. Then, in the Custom CSS text area, write in the appropriate CSS.

    For example, if you want to apply the font “Acme” to a div tag with an id of “#container”, you would enter the following in the Custom CSS box:

    #container{
       font-family: acme;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘custom css’ is closed to new replies.