Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Google Maps are no longer working #989086

    thank you very much!
    I solved the problem!

    thanks

    in reply to: How to use ROBOTO Condensed as text of my body #906936

    I solved it ….but without your support.
    I didi not appreciate it.

    in reply to: How to use ROBOTO Condensed as text of my body #906932

    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 help

    in reply to: How to use ROBOTO Condensed as text of my body #906238

    Per 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’);
    }

Viewing 4 posts - 1 through 4 (of 4 total)