MyBB Community Forums

Full Version: Electrolize
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to have the font that is used to this forum? http://www.themefreak.net/duty-calls.php
First of all, upload font's file in a folder, lets say: ./images/THEME_FOLDER/fonts/FONT.ttf

Where FONT.ttf is the font file.

Now add the following code in global.css;
@font-face {
    font-family: "FONT_NAME";
    src: url(images/THEME_FOLDER/fonts/FONT.ttf);
}

Now, you can use FONT_NAME as the font for your page. Smile

Edit: Beaten.
Thanks for both guys!!!!!!!!