Changing the color of my title

  • Hi, I just got the CSS upgrade and was simply trying to change the color of my title font. (“Higher Order Learning”) This is the code I’ve been trying and changing the word “title” to “content” or anything else that may be the tag, according to the source code (content, h1…).

    title {
    color: white;
    }

    Does anyone know what the title is tagged under? And how to access the tags of the rest of my page? Like the navigation bar and roundness of the corners of my post backgrounds? Or am I way off here?

    Thanks,
    bon
    http://gradeable.wordpress.com/

    The blog I need help with is: (visible only to logged in users)

  • Add this and replace 456789 with the hex for the color you prefer:

    .site-title a, .site-title a:visited {
        color: #456789 !important;
    }

    To find the selectors for the elements you want to target, you should learn to use a developer extension, such as Web Inspector in Safari or Firebug in Firefox.

    In the future make sure you post CSS questions in the CSS forum, not the Support forum.

  • Thanks, this has been helpful. I downloaded Google Chrome and am playing with the inspector. I’ll see you on the CSS forum. Thanks again!
    bon

  • The topic ‘Changing the color of my title’ is closed to new replies.