What if you tried this instead:
#site-title a {
color: #FFFFFF;
font-family: "Rosewood Std", cursive;
text-decoration: none;
}
.only-on-home.no-fittext #site-title a {
font-size: 44px;
}
Every time I save it, it takes away the font family. Is there some sort of lock that doesn’t allow me to change the theme’s title font? It seemed to have kept the rest of the CSS changes though.. Check out how it looks: http://www.thetrophyroomdallas.com
This is what I see on your site right now:
#site-title a{color:#FFF;font-family:"text-decoration:none}
which means that something’s going wrong when the file is saved. It looks like you might be accidentally using curly quotes instead of straight quotes.
Or use apostrophes instead of quote marks, that should work as well:
font-family: 'Rosewood Std', cursive;
perfect thank you. can anyone share the CSS that I would add in to change the fonts of the menu titles?
Are you referring to the text in the transparent black box that reads “Home | About | Location | Contact | Trophy Club Austin”? If so, use this code:
.nav a { font-family: 'Rosewood Std'; }
I ran into another problem. The CSS worked for this site: http://www.thetrophyroomdallas.com
but not for this one: http://thetrophyclubaustin.com
any suggestions?
Stephen, yes that worked perfect. What do I add to that code to make the text white so it pops more? It looks kind of dim right now..
To change the color of the menu items:
.navbar-inverse .navbar-nav > li > a { color: #fff; }
As for the Austin site, the CSS should work the same for both sites. Is the Rosewood Std font available to the Austin site?
I copied and pasted the same CSS into the editor and it’s working for the menu titles but not for the site title.. not sure whats going on..
What if you tried:
.basic #site-title a {
color:#FFF;
font-family:'Rosewood Std';
text-decoration:none;
}
Worked perfect thank you so much. Do you know why the font doesn’t show up as Rosewood on mobile devices?
Nothing in the code itself is preventing it. Do your mobile devices have the Rosewood Std font available?
I’m not sure.. I checked the websites out on my iPhone 6 plus and it’s just regular font..
If you have the font file on your computer, try using the webfont generator at FontSquirrel: http://www.fontsquirrel.com/tools/webfont-generator. That way, any visitor who visits your page will see the correct font.