Add a custom font

Solved

Add a custom font

PAUL8
Tourist
53 0 19

Hello, 

I want to add a custom font to my theme, the font name is BB Condensed Bold, there is the link to it https://www.onlinewebfonts.com/download/857c87f9e1434e30f777d7aaa316e8b8

I use theme dawn: my website is womber.fr and the password is PROPAGANDAAA

Thanks!

Cordially,

 

 

Accepted Solution (1)

JonathanSor
Shopify Partner
9 1 1

This is an accepted solution.

Hi @PAUL8 , 


1: Download the font you want

2: Upload font (woff file) to Content -> File -> Copy link

3: Insert this code into base.css:

 

@font-face {
  font-family: 'BBCondensedBold';
  src: url('link that you copied') format('woff');
}

body {
  font-family: 'BBCondensedBold';
}

 

Hope it helps!

 

Font Pro - best (also free) Shopify app for managing fonts

View solution in original post

Replies 3 (3)

JonathanSor
Shopify Partner
9 1 1

This is an accepted solution.

Hi @PAUL8 , 


1: Download the font you want

2: Upload font (woff file) to Content -> File -> Copy link

3: Insert this code into base.css:

 

@font-face {
  font-family: 'BBCondensedBold';
  src: url('link that you copied') format('woff');
}

body {
  font-family: 'BBCondensedBold';
}

 

Hope it helps!

 

Font Pro - best (also free) Shopify app for managing fonts
PAUL8
Tourist
53 0 19

where can I find content?

PAUL8
Tourist
53 0 19

Sorry I found