Okay
  Public Ticket #1998769
Roboto Font Not Displaying
Closed

Comments

  •  3
    doschaffer started the conversation

    While the default Robot font is entered on the backend, a font that looks more like Times is displayed. How do I get that to happen?

  •  877
    Zhivko replied

    Hi,

    Open your theme functions.php file and at the bottom add:

    add_action('wp_enqueue_scripts', function(){
        wp_enqueue_style( 'roboto-font', 'https://fonts.googleapis.com/css?family=Roboto');
    });



    Stachethemes Developer

  •  3
    doschaffer replied

    Worked. Thank you!