I've read through all of the basic tutorials on adding squirrel fonts to the template font selection system, but I'm still having trouble getting them to show up. I'm using Squirrel fonts to install Neo Sans and Neo Sans Bold
The template will display all the 'Standard' fonts when selected, and after installing the Squirrel fonts as directed, they are visible in the selection list, but when they are selected, the site defaults to Arial.
When examining the css via the browser (chrome), the font is showing this: font-family:
neosans, Arial, sans-serif;
So I don't know why the template isn't rendering the neosans font installed in the font directory.
The fonts/neosans/ folder contains the following files from the Squirrel font kit zip file:
neosansstd-regular-demo.html
neosansstd-regular-webfont.eot
neosansstd-regular-webfont.eot
neosansstd-regular-webfont.ttf
neosansstd-regular-webfont.woff
stylesheet.css
Here is the content of the font css file located in /templates/gk_startup/fonts/neosans/stylesheet.css
@font-face {
font-family: 'neo_sans_stdregular';
src: url('neosansstd-regular-webfont.eot');
src: url('neosansstd-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('neosansstd-regular-webfont.woff') format('woff'),
url('neosansstd-regular-webfont.ttf') format('truetype'),
url('neosansstd-regular-webfont.svg#neo_sans_stdregular') format('svg');
font-weight: normal;
font-style: normal;
}
Apparently I've missed renaming something somewhere.
Anyone who has tips on this, I'd much appreciate the assistance!