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?