I am trying to change the post title font on my website. I have worked for hours modifying the css and all posts on this subject have not solved my problem.
Instead of displaying the font package I downloaded from Font Squirrel, I instead see Times New Roman, no matter what I try.
My website is http://www.victoryinstitute.net/blogs/utb/
CSS:
@font-face {
font-family: "LeagueGothicRegular";
src: url("http://victoryinstitute.net/blogs/utb/wp-content/themes/grey-matter/League_Gothic-webfont.eot");
src: url("http://victoryinstitute.net/blogs/utb/wp-content/themes/grey-matter/League_Gothic-webfont.eot?#iefix") format("embedded-opentype"),
url("http://victoryinstitute.net/blogs/utb/wp-content/themes/grey-matter/League_Gothic-webfont.woff") format("woff"),
url("http://victoryinstitute.net/blogs/utb/wp-content/themes/grey-matter/League_Gothic-webfont.ttf") format("truetype"),
url("http://victoryinstitute.net/blogs/utb/wp-content/themes/grey-matter/League_Gothic-webfont.svg#LeagueGothicRegular") format("svg");
font-weight: normal;
font-style: normal;
}
[ ... ]
#content a h1, #content h1 a, #content a:visited h1, #content h1 a:visited {
font-family: LeagueGothicRegular;
color: #555;
text-decoration: none;
border: 0 none;
}
I have exhausted all possibilities I can think of or have seen on my extensive searches. Surely I am missing something simple.