• Resolved dwall

    (@dwall)


    I can’t figure out how to change the site title font for this theme. In the CSS, I have the following:

    #site_title {
    	color: #666;
    	text-decoration: none;
    	font-family: 'Meddon', 'Century Gothic', 'Helvetica Neue', Helvetica, cursive;
    	font-weight: 100;
    	font-size: 1.75em;
    	line-height: 1.75em;
    	padding-top: 0;
    }

    I can change the font-size and line-height with this, but nothing happens if I change the color or font. Where can I make those changes with this theme? Any advice would be appreciated! My site is at: http://www.danjacobwallace.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Site title text color should be configurable via Appearance > Header. Its CSS is injected after the main stylesheet, that’s why your changes in the main one didn’t take place.

    I would suggest to revert all the changes to theme file back to original and then install one of those Custom CSS plugins.
    http://wordpress.org/plugins/search.php?q=custom+css

    And use this selector to be sure.

    #lockup #site_title {
    	font-family: Arial;
    	font-size: 28px;
    	line-height: 1;
    	font-weight: normal;
    	color: green;
    	margin-top: 20px;
    }
    #lockup #tagline {
    	font-family: Arial;
    	font-size: 16px;
    	line-height: 1;
    	font-weight: normal;
    	color: red;
    }
    Thread Starter dwall

    (@dwall)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change title font color.’ is closed to new replies.