Title: Tryah85's Replies | WordPress.org

---

# Tryah85

  [  ](https://wordpress.org/support/users/tryah85/)

 *   [Profile](https://wordpress.org/support/users/tryah85/)
 *   [Topics Started](https://wordpress.org/support/users/tryah85/topics/)
 *   [Replies Created](https://wordpress.org/support/users/tryah85/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/tryah85/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/tryah85/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/tryah85/engagements/)
 *   [Favorites](https://wordpress.org/support/users/tryah85/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Staff List] Strange CSS Issue](https://wordpress.org/support/topic/strange-css-issue/)
 *  [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/strange-css-issue/#post-4031610)
 * For the record I was having the same issue using the Twentyfourteen theme. I 
   used what mitchellkarr posted last and it does work! Make sure the ” Write to
   external CSS file? (Leave unchecked for WP Multisite.)” is checked or it will
   not suffice. For some reason I kept reading make sure this is unchecked and it
   threw me off. Running WP 3.9.1 on Chrome v.35.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Fourteen] Where is navigation menu hover style defined?](https://wordpress.org/support/topic/where-is-navigation-menu-hover-style-defined/)
 *  [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/where-is-navigation-menu-hover-style-defined/#post-4457491)
 * Hi Matt,
 * Thank you so much as this has been bugging me all evening! Mine was on line 3718
 *     ```
       .primary-navigation li:hover > a,
       	.primary-navigation li.focus > a {
       		background-color: #324885;
       		color: #fff;
       	}
       ```
   
 * Thanks for your help!
 * -Todd
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Thirteen] styles.css inherits, but specific elements are ignored.](https://wordpress.org/support/topic/stylescss-inherits-but-specific-elements-are-ignored/)
 *  Thread Starter [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/stylescss-inherits-but-specific-elements-are-ignored/#post-4011300)
 * Thank You for the help, maybe I was being too specific….
 * body.home h1 {
    property:value; } and h1 a.site-title { property:value; } Did
   not work. Thank you again!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [changing default font family in twenty twelve using a child theme](https://wordpress.org/support/topic/changing-default-font-family-in-twenty-twelve-using-a-child-theme/)
 *  [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/changing-default-font-family-in-twenty-twelve-using-a-child-theme/#post-3610933)
 * Beyond the thread here, double dots means go back on folder(directory)and then
   cascade up to the key file. One dot means the current directory. Avoid full path
   names because when moving the files to the server the localhost changes. Pain
   to update.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing font family in default Twenty Twelve theme](https://wordpress.org/support/topic/changing-font-family-in-default-twenty-twelve-theme/)
 *  [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/changing-font-family-in-default-twenty-twelve-theme/#post-3167270)
 * Opps, sorry. See this new [thread](http://wordpress.org/support/topic/changing-twentytwelve-default-fonts-properly-with-no-plugins?replies=1).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing font family in default Twenty Twelve theme](https://wordpress.org/support/topic/changing-font-family-in-default-twenty-twelve-theme/)
 *  [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/changing-font-family-in-default-twenty-twelve-theme/#post-3167268)
 * I would not add <link href=’[http://fonts.googleapis.com/css?family=Ubuntu&#8217](http://fonts.googleapis.com/css?family=Ubuntu&#8217);
   rel=’stylesheet’ type=’text/css’> to header.php. Like the moderator said when/
   if you upgrade the theme the external link to googles CSS file is lost.
 * I have been working on a similar project (to help me understand how the wordpress
   hierarchy works).
 * The best way to add the google link to the header of the WordPress DOM is to 
   create a functions.php file in the child theme, and add php code to make it more
   dynamic.
 *     ```
       function load_google_fonts() {
       		wp_register_style('googleFontsUbuntu','http://fonts.googleapis.com/css?family= Ubuntu');
                   wp_enqueue_style( 'googleFontsUbuntu');
       }
   
       add_action('wp_print_styles', 'load_google_fonts');
       ```
   
 * So to help me process this in my head, within a separate functions.php in the
   child theme (not the main theme) a function is written registering the font and
   then it is enqueued. Finally you add the action to print out the fonts.
 * For the record I know there is a Google fonts plugin I could use, but I want 
   to figure this way out for learning purposes…
 * Where I am is now I can see the twenty twelve-child css links in the header when
   I view the source- so I know my google fonts are loaded and ready to be used,
   but I cannot get the right css properties to override the Open Sans, Helvetica…
   font-family.
 * I have found the main font-family properties in the main theme’s style.css, so
   I just override them by specifying them within the styles.css in the -child folder:
 *     ```
       @import url(../twentytwelve/style.css);
   
       body {
       	font-family: Marck+Script, Roboto, Averia+Libre, sans-serif;
       	}
       body.custom-font-enabled {
       	font-family: Marck+Script, Roboto, Averia+Libre, sans-serif;
       	}
       .entry-content code,
       .comment-content code {
       	font-family: Marck+Script, Roboto, Averia+Libre, sans-serif;
       	}
   
       .entry-content pre,
       .comment-content pre {
       	font-family: Marck+Script, Roboto, Averia+Libre, sans-serif;
       	}
   
       body,
       input,
       textarea,
       .page-title span,
       .pingback a.url {
       	font-family: Marck+Script, Roboto, Averia+Libre, sans-serif;
       	}
       ```
   
 * Nothing changes. I am lost, anybody have a suggestion? Thank you 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme: twentytwelve] Enqueue two new Google Fonts](https://wordpress.org/support/topic/enqueue-a-new-google-font-twentytwelve/)
 *  [Tryah85](https://wordpress.org/support/users/tryah85/)
 * (@tryah85)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/enqueue-a-new-google-font-twentytwelve/#post-3385703)
 * Great thread, thank you.

Viewing 7 replies - 1 through 7 (of 7 total)