Change color of blog title in header

  • Unknown's avatar

    I’m making some changes to my blog with the Notepad theme. The one thing I have not been able to do is change the color of the title and the description in the header. I’ve spent most of the afternoon playing with the customizer and color pallettes. I can change everything except the two lines I want to modify. I’d try some custom CSS but I have no way of entering it in the source code where it needs to be. I’m stumped. Can someone steer me in the right direction?

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

  • Unknown's avatar

    Follow up. I put this code in the custom CSS. The logo and description classes were used in the default CSS, so I figured if I had them down further with my specs, the cascade would pick it up and make the change. It didn’t. It doesn’t respond to anything. I’m starting to think that it’s a bug in the Notepad theme. Anyway, here’s what I tried.
    ***********************
    .logo {
    font-family: Arial;
    color: #f1bc41;
    font-size: 18px;
    font-weight:bold;
    font-style:italic;
    text-align: left;
    vertical-align: middle;
    }

    .description {
    font-family: Arial;
    color: #f1bc41;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
    }
    <h1 id=”logo”>
    Exploring Off the Beaten Path Blog
    </h1>
    <p class=”description”>A family friendly site for explorers, curiosity seekers and lifelong learners of all ages.</p>
    **************************************

  • The topic ‘Change color of blog title in header’ is closed to new replies.