Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Themes & Styling

TwenfyFifteen child theme does not change the font

Solved by pamtbaau View solution

Started by Radoslaw 8 years ago · 2 replies · 546 views
8 years ago

Following the Theme Development with Inheritance documentation, I created a child theme for TwentyFifteen.

I would like to change the font for body text from "Noto Serif" to "Noto Sans", however no change is taking place.

Am I missing anything obvious, or are there common errors that I may have made?

/css/custom.css file:

CSS
 /**
 * 3.0 Typography
 */

 body,
 button,
 input,
 select,
 textarea {
     color: #333;
     font-family: "Noto Sans", sans-serif;
     font-size: 15px;
     font-size: 1.5rem;
     line-height: 1.6;
 }

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: "Noto Serif", serif;
    font-weight: 700;
}
8 years ago Solution

@radoslav When looking at '/templates/partials/base.html.twig', the '/css/custom.css' stylesheet is not loaded.

Add the following line to the list of stylesheets:

TWIG
<link rel='stylesheet' id='twentyfifteen-custom-css'  href='{{ url('theme://css/custom.css') }}' type='text/css' media='all' />

Of course this should be done in your child theme...

last edited 07/25/18 by pamtbaau
8 years ago

@pamtbaau,

Thank you. This worked. I am not a web dev, so for the sake of others in a similar situation:

  1. I copied twentyfifteen/templates/partials/base.html.twig to /twentyfifteen-child/templates/partials/.
  2. Added the line posted by @pamtbaau to the {% block stylesheets %} block of the newly copied base.html.twig file.

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 198 2 months ago
Themes & Styling · by Ian, 2 months ago
3 94 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 456 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 48 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 128 3 months ago