Title: Tiny forge theme
Last modified: August 21, 2016

---

# Tiny forge theme

 *  Resolved [teegee50](https://wordpress.org/support/users/teegee50/)
 * (@teegee50)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/)
 * How can I get different color on site description to that on site title.

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

 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860766)
 * In style.css under: /* Theme Options – Site Header Logo */
 *     ```
       .site-header h1 a,
       .site-header h2 a {
       	color: #515151;
       	display: inline-block;
       	text-decoration: none;
       }
       .site-header h1 a:hover,
       .site-header h2 a:hover {
       	color: #21759b;
       }
       ```
   
 * You might break it down to:
 *     ```
       .site-header h1 a {
       	color: #515151;
       	display: inline-block;
       	text-decoration: none;
       }
   
       .site-header h2 a {
       	color: #515151;
       	display: inline-block;
       	text-decoration: none;
       }
       .site-header h1 a:hover,
       .site-header h2 a:hover {
       	color: #21759b;
       }
       ```
   
 *  Thread Starter [teegee50](https://wordpress.org/support/users/teegee50/)
 * (@teegee50)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860822)
 * Hi Tomas,
    Sorry but problem not resolved. I’m using achild theme and put the
   suggested code in it but site title and site description font still the same 
   color. Child theme code below.
 * ‘Template: tiny-forge
    */ [@import](https://wordpress.org/support/users/import/)
   url(‘../tiny-forge/style.css’);
 * .site-title{
    background-color: #c3c19b; /*This formats OK*/ }
 * .site-header h1 a {
    color: #515151; display: inline-block; text-decoration: 
   none; }
 * .site-header h2 {
    color: #000000; }
 * .entry-title{
    display:none; }’
 * I tried live editing in Firebug by removing the code between question marks shown
   below from the parent theme and this gave the right result but I want to do it
   via the child.
 * .site-header h1 a
    ??,.site-header h2 a?? { color: #515151; display: inline-block;
   text-decoration: none; }
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860850)
 * Just try to include those several lines in child theme. If you see them crossed
   out, you can try use `!important` to enforce the rule.
 * And of course it easier to see problem if you would provide your site address.
 *  Thread Starter [teegee50](https://wordpress.org/support/users/teegee50/)
 * (@teegee50)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860861)
 * Hello Tomas,
    I must be doing something stupid since Firebug isnt showing any
   CSS from child theme for h2 and !important doesn’t work either. Site is [http://www.thelisteningplace.co.nz/wordpress](http://www.thelisteningplace.co.nz/wordpress).
 * Your help is much appreciated.
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860863)
 * Try this one:
 *     ```
       .site-header h2.site-description {
           color: #000;
       }
       ```
   
 *  Thread Starter [teegee50](https://wordpress.org/support/users/teegee50/)
 * (@teegee50)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860868)
 * Yep it works. Thought I had tried that one but obviously not.
 * Many thanks.

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

The topic ‘Tiny forge theme’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/tiny-forge/1.6.1/screenshot.png)
 * Tiny Forge
 * [Support Threads](https://wordpress.org/support/theme/tiny-forge/)
 * [Active Topics](https://wordpress.org/support/theme/tiny-forge/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/tiny-forge/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/tiny-forge/reviews/)

## Tags

 * [font colors](https://wordpress.org/support/topic-tag/font-colors/)
 * [site description](https://wordpress.org/support/topic-tag/site-description/)
 * [site title](https://wordpress.org/support/topic-tag/site-title/)

 * 6 replies
 * 2 participants
 * Last reply from: [teegee50](https://wordpress.org/support/users/teegee50/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/tiny-forge-theme/#post-4860868)
 * Status: resolved