Title: CSS not working
Last modified: August 22, 2016

---

# CSS not working

 *  [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/)
 * Hello,
 * I’m trying to edit my CSS, but it does not seem to be working. Just trying to
   make a few simple changes to my title:
 * #wrapper #header-wrapper #masthead .site-title a {
    color: #FFFFFF; font-family:“
   Roosewood Std”, cursive; font-size: 44px; text-decoration: none; }
 * Here’s our homepage: [http://www.thetrophyroomdallas.com](http://www.thetrophyroomdallas.com)
 * Any suggestions on how to fix?

Viewing 15 replies - 1 through 15 (of 35 total)

1 [2](https://wordpress.org/support/topic/css-not-working-23/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/css-not-working-23/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/css-not-working-23/page/2/?output_format=md)

 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760841)
 * 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;
       }
       ```
   
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760900)
 * 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](http://www.thetrophyroomdallas.com)
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760907)
 * This is what I see on your site right now:
 * `#site-title a{color:#FFF;font-family:&quot;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.
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760916)
 * Or use apostrophes instead of quote marks, that should work as well:
 *     ```
       font-family: 'Rosewood Std', cursive;
       ```
   
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760990)
 * perfect thank you. can anyone share the CSS that I would add in to change the
   fonts of the menu titles?
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760991)
 * 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'; }`
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760992)
 * I ran into another problem. The CSS worked for this site: [http://www.thetrophyroomdallas.com](http://www.thetrophyroomdallas.com)
 * but not for this one: [http://thetrophyclubaustin.com](http://thetrophyclubaustin.com)
 * any suggestions?
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760993)
 * 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..
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760994)
 * 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?
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760995)
 * 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..
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5760999)
 * What if you tried:
 *     ```
       .basic #site-title a {
       color:#FFF;
       font-family:'Rosewood Std';
       text-decoration:none;
       }
       ```
   
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5761000)
 * Worked perfect thank you so much. Do you know why the font doesn’t show up as
   Rosewood on mobile devices?
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5761001)
 * Nothing in the code itself is preventing it. Do your mobile devices have the 
   Rosewood Std font available?
 *  Thread Starter [nikoybanez](https://wordpress.org/support/users/nikoybanez/)
 * (@nikoybanez)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5761002)
 * I’m not sure.. I checked the websites out on my iPhone 6 plus and it’s just regular
   font..
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/css-not-working-23/#post-5761005)
 * If you have the font file on your computer, try using the webfont generator at
   FontSquirrel: [http://www.fontsquirrel.com/tools/webfont-generator](http://www.fontsquirrel.com/tools/webfont-generator).
   That way, any visitor who visits your page will see the correct font.

Viewing 15 replies - 1 through 15 (of 35 total)

1 [2](https://wordpress.org/support/topic/css-not-working-23/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/css-not-working-23/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/css-not-working-23/page/2/?output_format=md)

The topic ‘CSS not working’ is closed to new replies.

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [custom](https://wordpress.org/support/topic-tag/custom/)
 * [site title](https://wordpress.org/support/topic-tag/site-title/)

 * 35 replies
 * 3 participants
 * Last reply from: [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/css-not-working-23/page/3/#post-5761128)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
