What Are Custom Fonts?
FEA Create provides a selection of Google Fonts, which are great for most designs. However, if you have a specific brand font or a unique typeface you’d like to use, you can upload and apply a custom font to your website or funnel. This article will walk you through the process step by step.
Step 1: Prepare Your Font File
To use a custom font in FEA Create, you need to ensure it is in the correct format.
Most fonts are downloaded in .ttf or .otf formats.
FEA Create requires fonts to be in .woff format.
Use a free online converter like CloudConvert to convert your font file to .woff format.
Step 2: Upload Your Font to FEA Create
You cannot upload fonts directly to media storage. Instead, follow these steps:
Go to Create Your Offer > Courses > Products.
Create a new product (this will be used just for storing custom fonts).
Scroll down to Attached Files and upload your font file.
Give the file a name and save it.
Step 3: Get the Font File Link
Click Preview on the product page.
Find the uploaded font file.
Right-click the file and select Copy Link Address.
Step 4: Add the Font to Your Website or Funnel
Open a text editor (like Notepad) and paste the following CSS code:
@font-face { font-family: 'YourFontName'; src: url('YOUR-FONT-URL') format('woff'); }
@font-face {
font-family: "YourFontName";
src: url('please add your url here') format('woff2');
}
.YourFontName {
font-family: "YourFontName" !important;
}
Replace 'YourFontName' with the name of your font.
Replace 'YOUR-FONT-URL' with the link you copied.
Copy the entire code.
Step 5: Apply the Font in FEA Create
Open the page where you want to use the font (Website or Funnel Editor).
Click Edit Page to enter the builder.
Go to Settings > Custom CSS and paste the code.
Click Save.
Step 6: Use the Font in Your Text
Select the text element you want to change.
Open Advanced Settings.
In the Font Family field, type the name of your font exactly as you set it in the CSS code.
Your text will now be displayed in your custom font.
And that’s it! You’ve successfully uploaded and applied a custom font to your FEA Create website or funnel.