Okay
  Public Ticket #165686
Logo text font size
Closed

Comments

  • Sherissa started the conversation
    Hi, what is the code to isolate the font for the logo text? I would like to specify a font and size. Thank you
  • Sherissa replied

    I've figured out how to change the font size, but not how to specify a google font that's different to the header fonts

  •  1,069
    ThemeNectar replied

    Hey,

    If you're not loading the Google font yet, you must add this into the functions.php file

    wp_enqueue_style("custom-font", "https://fonts.googleapis.com/css?family=Great+Vibes:400", '', '3.1');

    then you could call the font like:

    .element {
       font-family: 'Great Vibes'!important;
    }

    Cheers :)