Joomla.it Forum

Joomla! 3 => I Template di Joomla! 3 => : fabioweb 02 Oct 2016, 16:35:08

: Caricare un font ttf
: fabioweb 02 Oct 2016, 16:35:08

Buongiorno forum,
sto cercando di caricare questo font: http://www.dafont.com/helloamazing.font

Questo è quanto ho scritto nello style.css

@font-face {
  font-family: 'Hello Amazing';
  src:  url('../HelloAmazing.ttf') format('ttf'),
        url('../HelloAmazing.ttf') format('ttf');
}


body, h1, h2, h3, h4, h5, h6, p, div, span {
    font-family: 'Hello Amazing', sans-serif !important;
}

Gerarchia file delle cartelle template Joomla


-css

-- style.css
-HelloAmazing.ttf

Link sito web:http://agporcellino.fabiotoscano.it/ (http://agporcellino.fabiotoscano.it/)

Grazie per il supporto
: Re:Caricare un font ttf
: alexred 02 Oct 2016, 16:44:57
Ciao fabioweb,
prova a leggere anche questo articolo:  http://www.joomla.it/e-ancora/articoli-community-3x/8455-modificare-i-font-di-un-template-joomla-generico-usando-font-gratuiti-alternativi.html
: Re:Caricare un font ttf
: fabioweb 02 Oct 2016, 17:16:36

Grazie mille alex.
non riuscivo a caricare il font perchè avevo dato questa istruzione:
src:  url('../HelloAmazing.ttf') format('ttf'),


invece di


src:  url('../HelloAmazing.ttf') format('truetype'),


Grazie!