Ciao a tutti,
ho la necessità di installare un font personalizzato nel sito
www.fotocabalisti.itHo seguito questa guida.
http://www.joomla.it/articoli-community-16-e-17-tab/7263-come-incorporare-un-font-specifico-su-un-sito-joomla.html- ho convertito il font nei vari formati e copiatolo nella cartella /template/font (ho 5 formati .svg, .eot . woff2 .woff .ttf)
- ho inserito nel css principale questa istruzione:
@font-face {
font-family: 'Champagne_Limousines';
src: url('font/Champagne_Limousines.eot');
src: url('font/Champagne_Limousines.eot') format('embedded-opentype'),
url('font/Champagne_Limousines.woff2') format('woff2'),
url('font/Champagne_Limousines.woff') format('woff'),
url('font/Champagne_Limousines.ttf') format('truetype'),
url('font/Champagne_Limousines.svg#Champagne_Limousines') format('svg');
}
Come faccio ora a dire che tutto il sito web deve avere il font "Champagne_Limousines" da me caricato?
Grazie
Ciao