You are viewing limited content. For full access, please sign in.

Question

Question

Forms theme selection limited to 5 fonts?

asked on April 6, 2017

Hi, it is correct that only 5 fonts are visible in Forms10.1, is there a way to introduce additional fonts? Thanks

1 0

Answer

SELECTED ANSWER
replied on April 6, 2017

Yes, by default it appears they give you only those fonts that would be most commonly available within common operating systems. 

However, it is very easy to add additional fonts using Google Fonts and then by adding a small bit of code to your Forms custom CSS section:

@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,500|Ubuntu:300,300i,700');

That is one example. From the Google Fonts website you will choose a font or a few and their respective font weights. It will generate the code as displayed above for you to copy and paste. Be sure that the code is towards the top of your custom CSS. Then you will simply specify those font families within your CSS as displayed below:

#form-title-wrap h1 {
  font-family: "Ubuntu", Sans-Serif !important;
  font-size: 3.5rem !important;
  font-weight: 300;
}

 

2 0
replied on July 5, 2018

How do you get the code?  I went to the site, found the font I want, but can't seem to find the code.  Do you have to buy it?

0 0
replied on July 6, 2018

I had that issue on some. Looks like there are certain ones that are not avialable and the one you are trying maybe one of them

0 0

Replies

replied on April 6, 2017

thank you will try soon.

0 0
replied on April 6, 2017

Works! Thank you Sir!

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.