Quote:
Originally Posted by ozzy47
Note: only fonts that are installed on the users computer will display correctly. If they don't have that font on their computer another one will be substituted.
|
I am pretty sure you could define your own fonts in CSS (additional.css is fine)
Do something like this
HTML Code:
@font-face
{
font-family:custom_font_name; /* Can be anything you like, this is what you would name the font, like Arial or Tahoma */
src:
url('font_location/custom_font.ttf'), /* Can use .otf also */
url('font_location/custom_font.eot'); /* IE9 */
}
A note on this is that it can slow down your website, though for one font its not major, barely anything if cached properly and its a solid server.
EDIT: Also want to mention that I am running this fine on 4.2.2 without having to do anything but install it.