Jump to content

[SOLVED] Changing font - with @font-face


csstag

Recommended Posts

Good morning People,

 

I would like to use a custom font in my prestashop, and I have tried to use css font-face utility, but without any success.

 

What I have done:

 

1. copy newfont.ttf in the root of the server (I have copied it into the themes root as well - doens't work either)

2. in the global.css have put these code:

@font-face{
font-family: batman;
src: url('batmfa.ttf');
}
3. call the new font in the body tag:
body{
font: batman, arial 12px/14px;
}

 

Can anyone please help me how to do it?

Edited by csstag (see edit history)
Link to comment
Share on other sites

You can take a look at the source for http://fontawesome.io/ to see a practical implementation (it's designed for the Bootstrap framework but is an excellent general example regardless).

 

There's also some good background reading here: http://www.webdirections.org/blog/the-return-of-font-embedding-to-the-web/ including information about compatibility and standards for font embedding.

 

Have fun!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...