Hi-
I’ve tried adding the font Julius Sans One through the Import/Export/ Custom Font Manager but it’s telling me it can’t read the files ( I downloaded a zipped file from Google Fonts.) Is there a way to add this font via custom css instead to use as my heading and body font?
Thanks!
Erin
Hey Erin,
The code is right there for you to use on Google Fonts:
Import the font:
@import url('https://fonts.googleapis.com/css?family=Julius+Sans+One');
Use the following CSS rules to specify these families:
font-family: 'Julius Sans One', sans-serif;
Best regards,
Rikard
Thank you. Do I add these both under the Custom CSS box in the Enfold settings?
Erin
Hi,
Yep, they can be added to quick css.
Best regards,
Jordan Shannon
I added:
@import url(‘https://fonts.googleapis.com/css?family=Julius+Sans+One’); font-family: ‘Julius Sans One’, sans-serif;
under Enfold/General Styling/Fonts/Custom CSS and nothing changed. What am I doing wrong? Thanks!
Erin
Hi,
You have to add the font to the element you want it to effect. For example:
h1{
font-family: ‘Julius Sans One’, sans-serif;
}
Best regards,
Jordan Shannon