website builder cheat sheet

Choose the best website builder for your business

The Cheat Sheet that shows you exactly which website builder to choose based on your needs with bonus on how to get free custom domain, free email hosting, and more.

Get the FREE cheat sheet
website builder cheat sheet

How to change fonts in Weebly (2023)

By David NgeLast Updated: January 25, 2023

My work is supported by affiliate commissions. Learn More

Here's a step-by-step tutorial on how to change and add a custom font in Weebly.

In this guide we'll go over:

You will be able to change and apply a custom font to your website text elements by the end of this tutorial.

Let's dive right in.

How to change text font in Weebly

First login to your Weebly account. Make sure you select the correct website and click Edit Site.

Make sure you are editing the right website
Make sure you are editing the right website

Next, click Theme. You will find it at the top navigation.

Click into the Theme settings
Click into the Theme settings

On the left sidebar, you'll see a list of options to customize your theme. Click into Change Fonts.

Select to change fonts
Select to change fonts

You should now see a list of design options to customize the font choices.

List of font options in Weebly
List of font options in Weebly

Important: When you change the font for any of the text elements, the changes are applied throughout the entire website. So if you choose a new font for the paragraph text on one page, all paragraphs (across all pages) on your site will use that same font. The same goes for buttons, links, headlines, image captions, etc.

Is there a way to customize the font for a specific text element?

Yes, there is. But, it's more tedious to do so. Click here to skip to the last section on how to set a custom font for one specific text element.


Select the text element and the font you want to change.

Select an element to change its font
Select an element to change its font
Select a font to change to
Select a font to change to

The text font should now be updated.

Changing font for the headline
Changing font for the headline

Upload and use a custom font in Weebly

While Weebly has hundreds of fonts to choose from, if you can't find a font you're after or if you need a specific font for your client then this guide will show you how to upload a custom font in Weebly.

First, you should already have access to custom font files on your computer/mobile. If you don't have one, here's a unique Google font you can download for this tutorial.

Download a font from Google Fonts
Download a font from Google Fonts

Then head to the Weebly Theme settings again and select Edit HTML/CSS.

Open up the Weebly code editor
Open up the Weebly code editor

You are now looking at the code editor for your Weebly theme. While it can look intimidating for a beginner, just follow the steps below and you should be fine.

First, click the + button next to ASSETS, create a folder and name it fonts.

Add a new fonts folder
Add a new fonts folder

Click the gear icon (⚙️) and upload the Google Font that you've just downloaded into the fonts folder.

Upload the font files
Upload the font files

You should now see the new font added into the folder.

Your new custom font added
Your new custom font added

In order to use the new custom font, copy and paste the following code to the top of the editor.

@font-face {
	font-family:'New Rocker';
	src: url('assets/fonts/NewRocker-Regular.ttf');

}
Copy and paste the custom font code
Copy and paste the custom font code 

Notes:

Now whenever you want to use the new font, you have to add font-family to the HTML text element you want to change.

For example, we want to change the font of the header to the new Google font we've downloaded.

Updating the home page header
Updating the home page header

In order to do that I have to add the following code the to editor:

h2 span{
	font-family :'New Rocker';
}
Changing the headline font
Changing the headline font 

You can also change the color and the size of the font by adding a few snippets of code.

Changing the headline color and size
Changing the headline color and size

I understand that using the new custom font requires some basic coding knowledge. Unfortunately at the moment, this is the only way to use custom font in Weebly.

If you'd like to invest some time learning basic coding skills, this video tutorial by FreeCodeCamp is a great start. It's an investment that will benefit you for years to come if you want to customize any website in the future.

Changing custom font for specific text element

In order to change the font for a specific text in Weebly we have to utilize the Embed Code feature.

The Embed Code feature allows you to add custom HTML code to the page which you can manipulate in the code editor later.

Here's an example.

Delete the original header, and drag the Embed Code page element to replace it.

Remove the existing headline and replace with a custom code embed
Remove the existing headline and replace with a custom code embed

Click on the new element and select Edit Custom HTML. You can optionally align the new element to a center position.

Edit the custom HTML
Edit the custom HTML

Then add the following code in the text field.

<h2 class="custom-font">This is a custom header</h2>
Copy and paste the custom HTML code
Copy and paste the custom HTML code

You may replace "This is a custom header" to whichever text you like.

Head back to the Theme settings again and select Edit HTML/CSS.

Open up the code editor again
Open up the code editor again

Add the following code in the editor.

.custom-font{
	font-family: 'New Rocker' !important;
	font-size: 40px;
}
Copy and paste the new custom font
Copy and paste the new custom font 

Note:

You have now successfully add a custom font to the header!

Headline custom font updated
Headline custom font updated

You can also use this method on any section of the page, be it a paragraph, button text, navigation, or blog post articles.

Although, that would require some basic coding knowledge. Since it is out of the scope of the article, you can check out this tutorial to learn some basic coding skills.

David Nge

David is the founder of MakingThatWebsite.com and started making websites for businesses back in 2014. He's a keen learner and wants to share his journey and knowledge with other business owners and freelancers. He launched MakingThatWebsite.com in 2021 to make website building more approachable and scalable for businesses.

Have a tutorial you want to learn? Leave a suggestion here.