Skip to main content
All CollectionsInterfacesFonts
Adding Custom fonts to the Interface Builder
Adding Custom fonts to the Interface Builder

Pro and higher accounts can add custom CSS and JavaScript to support custom fonts

Michael Fatica avatar
Written by Michael Fatica
Updated over a week ago

Fonts from Adobe Fonts and Google Fonts can be added to the Interface Builder for customers in our Pro and higher plans.

Custom fonts can be upload to MetaLocator file uploader under tools.

After uploading the file there are a few interface settings that need to be updated before the font displays properly.

First disable the default font as shown below:

Then navigate to the CSS section under additional Style & Color options. Edit the code below to include the appropriate file url/format and select an appropriate font family name. Place the code in the CSS editor and save.

@font-face {
font-family: 'Font Family Name';
src:
url('https://d23g0hayoxy5dh.cloudfront.net/ul/7438/images/fonts/font-family-name.woff2') format('woff2'),
url('https://d23g0hayoxy5dh.cloudfront.net/ul/7438/images/fonts/font-family-name.woff') format('woff');
}

Finally, add the font to the CSS elements and be sure to update the "family" to your selected font.

.metalocator,
.metalocator input,
.metalocator select,
.metalocator button,
.metalocator textarea,
.metalocator .popupWindow
{
font-family: "Font Family Name",Helvetica,Arial,sans-serif !important;
}

The result will look something like this:

Be sure to save your changes!

Did this answer your question?