Mobile app version of vmapp.org
Login or Join
Sherry384

: Using Easy Google Fonts plugin to override theme header: How can I find the right selector? I'm using the theme which has inherited its' style from the theme Wallstreet for WordPress and I

@Sherry384

Posted in: #Css #Wordpress

I'm using the theme which has inherited its' style from the theme Wallstreet for WordPress and I cannot find the selector to use with Google fonts plugin that will let me change the font face for the title in the header section.

I've looked at both the main stylesheet as well as the header, and I've yet to figure it out.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sherry384

1 Comments

Sorted by latest first Latest Oldest Best

 

@Connie744

<head>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=GOOGLEFONT">
<style>
body {
font-family: 'GOOGLEFONT', serif;
font-size: 48px;
}
</style>




In the headers of any webpage, calling like this would be common,
In wordpress its a bit different...
I would call in into play in the style sheet of the theme you are using by doing this:
@import url('https://fonts.googleapis.com/css?family=GOOGLEFONT');


replacing GOOGLEFONT with the font of your own choosing

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme