Calling the fonts.css file

Permalink
I've been trying to follow the instructions on this page:http://www.concrete5.org/documentation/how-tos/designers/how-to-add...

Got as far as the last step. But the documentation is incomplete, IMO. Since I'm a beginner, I have no idea HOW to "call" the bloody fonts.css file into the theme header.

I tried calling it but it wouldn't come. Tried whistling too. I even tried talking nicely to it. "Heeeeere, fonts.css file. C'mere boy!"

Does this have something to do with editing the default.php file? If so, how?

 
VidalThemes replied on at Permalink Reply
VidalThemes
Hi, Calling the file just means including it, so you would just include it as a normal style sheet like this:

<link rel="stylesheet" type="text/css" href="<?php  echo $this>getStyleSheet('fonts.css')?>" />


This will need to be in the head of your site, obviously the example shows the fonts.css being at the top level of your site, if its in a folder dont forget to reference the folder too, something like css/fonts.css
PineCreativeLabs replied on at Permalink Reply
PineCreativeLabs
As author of that how-to, it didn't occur to me to mention this bit. My bad. When I wrote it, it was aimed at intermediate concrete users. I'll be sure to update the How-to, so it's more "beginner-friendly".
cdnsushi replied on at Permalink Reply
Thanks, man! Very much appreciated. :-)