Remove Logo Font, Change Tagline Font

Hello,

I am curious how to turn off the logo font in the top left corner of my Illdy? I just wanted to use the large header below (the cursive) and not this font, but there doesn’t seem to be a way to turn it off.

I am also using the Easy Google Fonts plugin, but cannot change the font of the tagline without changing the general paragraph font for blog posts and such. Is there a code where I can change just the tagline font?

Site is at http://evergreenawakening.com

Thank you!

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the logo by going to Appearance > Customize > Additional CSS and pasting it there.

/*Remove Logo*/
.navbar > .container .navbar-brand {

    display: none;
}

This CSS code would be used to change the font for the tagline, simply change the font family to the corresponding Google font.

/*Tagline font*/
.site-description {
    padding-top: 20px;
    font-family: fantasy;
}

Best Regards,
Support