Using alternative fonts in Hyvor Talk

Is it possible to upload or select alternative fonts for use within Hyvor?

2 Likes

hello, is this regarding Hyvor Talk or Hyvor Blogs?

Hyvor Blogs: Fonts - Hyvor Blogs Docs

Hello. Thanks for your response! I’d like to try and change the font on the ratings areas we’ve implemented to match the font we use within our app (see attached). Is this possible?

Generally, the fonts should be inherited from your website unless you have styles in the parent element that change the font or you are embedding Hyvor Talk within an iframe.

One option would be to use custom CSS to set the font-family attribute (Console → Settings → Comments → Custom CSS).

#app {
    font-family: 'My Font'
}

If it is inside an iframe, you might want to import the font from somewhere like Google Fonts as well:

@import('https://fonts.googleapis.com/....');

#app {
    font-family: 'My Font'
}

Unfortunately those options haven’t worked. The font is changing, but to a default font, so something is happening. The font I’m looking to implement in particular is Montserrat. Do you have specific code for that? Thanks in advance.

1 Like