• Hi everyone :D..

    Firstly thank you very much for this amazing theme. I’ve never seen theme like this.

    Secondly.. i have a question.. i want to change font to “Roboto” .
    I know there are options to change font in Option Tree. But the available Options for roboto fons are “Roboto Condensed and Roboto Slab”, but i like “Roboto” one.

    And the last.. i wonder what’s the meaning of “latin ext” and “Cyrillic ext”
    Thanks ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Latin is alphabet character
    Cyrillic is Greek alphabet, Arabic….

    Put this in your child theme’s functions.php file:

    function my_google_styles() {
    wp_register_style('googlefonts', 'https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700,900', array(), null );
            wp_enqueue_style( 'googlefonts');
    }
    add_action('wp_enqueue_scripts', 'my_google_styles');

    Then in your child theme’s style.css file you would use:

    body {
        font-family: "Roboto", Arial, sans-serif;
    }

    Forgot to mention, make sure you have ‘Dynamic Styles’ turned off in the Options Tree settings

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change font to " roboto " instead of " roboto condensed " ?’ is closed to new replies.