Forum Replies Created
-
AuthorPosts
-
thank you very much!
I solved the problem!thanks
I solved it ….but without your support.
I didi not appreciate it.The right code is
add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
function avia_add_heading_font($fonts)
{
$fonts[‘Roboto Condensed’] = ‘Roboto
Condensed:300italic,400italic,700italic,400,300,700’;
return $fonts;
}add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
function avia_add_content_font($fonts)
{
$fonts[‘Roboto Condensed’] = ‘Roboto
Condensed:300italic,400italic,700italic,400,300,700’;
return $fonts;
}Anyhow I set the Roboto Condensed but i do NOT SEE any differences!
What do i have to do to CHANGE the font?
Please i need helpPer roboto condensed cona you please pass me the code to add all of them?
thanks/* Light */
@font-face {
font-family: “Roboto Condensed”;
font-style: normal;
font-weight: 300;
src: local(‘Roboto Condensed Light’), local(‘RobotoCondensed-Light’), url(“RobotoCondensed-Light.ttf”) format(‘truetype’);
}
@font-face {
font-family: “Roboto Condensed”;
font-style: italic;
font-weight: 300;
src: local(‘Roboto Condensed Light Italic’), local(‘RobotoCondensed-LightItalic’), url(“RobotoCondensed-LightItalic.ttf”) format(‘truetype’);
}/* Normal */
@font-face {
font-family: “Roboto Condensed”;
font-style: normal;
font-weight: 400;
src: local(‘Roboto Condensed Regular’), local(‘RobotoCondensed-Regular’), url(“RobotoCondensed-Regular.ttf”) format(‘truetype’);
}
@font-face {
font-family: “Roboto Condensed”;
font-style: italic;
font-weight: 400;
src: local(‘Roboto Condensed Italic’), local(‘RobotoCondensed-Italic’), url(“RobotoCondensed-Italic.ttf”) format(‘truetype’);
}/* Bold */
@font-face {
font-family: “Roboto Condensed”;
font-style: normal;
font-weight: 700;
src: local(‘Roboto Condensed Bold’), local(‘RobotoCondensed-Bold’), url(“RobotoCondensed-Bold.ttf”) format(‘truetype’);
}
@font-face {
font-family: “Roboto Condensed”;
font-style: italic;
font-weight: 700;
src: local(‘Roboto Condensed Bold Italic’), local(‘RobotoCondensed-BoldItalic’), url(“RobotoCondensed-BoldItalic.ttf”) format(‘truetype’);
} -
AuthorPosts