midianinja / redeninja

Rede de Colunistas da Mídia NINJA
GNU General Public License v2.0
3 stars 2 forks source link

Personalizar tipografia #15

Closed wforte88 closed 7 years ago

wforte88 commented 7 years ago

Verificar conversão de tipografia para webfont e instalar no tema.

wforte88 commented 7 years ago

É preciso subir a fonte nos formatos eot, woff e ttf e referenciar as URLs no código abaixo:

@font-face {
font-family: 'Times';
src: url('URL_FONTE.EOT');
src: url('URL_FONTE.EOT?#iefix') format('embedded-opentype'),
url('URL_FONTE.WOFF') format('woff'),
url('URL_FONTE.TTF') format('truetype');
font-weight: bold;
font-style: normal;
}

.et_post_meta_wrapper h1 {
font-family: Times, Arial; 
font-size: 38pt;
width: 73.625%;
}
iwasthesword commented 7 years ago

Commitado em ec9bf05