Jump to content
WebFlake
  • 0

Default Fonts


FlinTY

Question

6 answers to this question

Recommended Posts

  • 0
  • Administrator

Alternatively, you can just add the font name to body in ipb_styles.

 

The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved.If you have other questions, please open a new topic.
Link to comment
Share on other sites

  • 0

TrueType Fonts

 

Alright, here is how I would go about adding the KingthingsPetrock Regular font to a webpage/site.

 

Add to the CSS

@font-face {    font-family: 'KingthingsPetrockRegular';    src: url('http://domain.com/fonts/Kingthings_Petrock.ttf');    font-weight: normal;    font-style: normal;}

 

 

Then simply add to the CSS where you want it.

font-family: KingthingsPetrockRegular;

Just notice how you define the name of the font in the @font-face line 1, you can name that whatever you'd like as long as it's matched in the CSS reference later on.

Edited by Murilirum
Link to comment
Share on other sites

  • 0

Alright, here is how I would go about adding the KingthingsPetrock Regular font to a webpage/site.

 

Add to the CSS

@font-face {    font-family: 'KingthingsPetrockRegular';    src: url('http://domain.com/fonts/Kingthings_Petrock.ttf');    font-weight: normal;    font-style: normal;}

 

 

Then simply add to the CSS where you want it.

font-family: KingthingsPetrockRegular;

Just notice how you define the name of the font in the @font-face line 1, you can name that whatever you'd like as long as it's matched in the CSS reference later on.

oh didn't think i need this all i wanted to know is where i put the fonts in my FTP or site

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...