MyBB Community Forums

Full Version: Changing font of theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have changed the font of my new theme, but i want to add 1 more font for the Panel of the theme , That font should be different from other and just applicable for Panel.
Add it in global.css:

#panel {
font-family: 'Carrois Gothic', Arial, Sans-Serif;
.
.
.

^^ This way.
(2012-10-15, 10:23 AM)effone Wrote: [ -> ]Add it in global.css:

#panel {
font-family: 'Carrois Gothic', Arial, Sans-Serif;
.
.
.

^^ This way.

But where i have to upload the 2nd font?
in your global.css:

@font-face {
font-family: myfont;
src: url('myfont.ttf');
}
Edit: Ninja'ed
Edit 2: Wait... you're denied support. :/


Add this to your CSS
@font-face { font-family: NAME OF THE FONT; src: url('LINK TO THE FONT FILE'); }

and in

font-family, add it to the NAME OF THE FONT

Example:
.thead { font-family: NAME OF THE FONT, anotherfont1, anotherfont2; }
Thanks working now , can be closed