• Resolved broennimann

    (@broennimann)


    Hi

    so I’ve installed WordPress on my server, went for Twenty Twelve (I like its simplicity) – the only thing bugging me is that I can’t change the font/post colours (I don’t like blue titles, I want to go for a different look).

    Now, I’ve created a child theme – but I have no idea what CSS commands to use to achieve custom font colour change with all post titles throughout (also a different colour on mouseover).

    Anyone care to help a noob? Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try using Firefox with the Firebug add-on for this kind of CSS troubleshooting. Or use whatever developer tool is available in your web browser.

    Thread Starter broennimann

    (@broennimann)

    Thank you.
    Installed Firebug, now playing around with it. Can’t seem to find the relevant CSS code though, but will keep trying.

    Thread Starter broennimann

    (@broennimann)

    Thank you. I actually did it (so proud, I have no idea at all about what I’m doing ;-). If anyone wants to try it in their child theme’s style.css, here’s how I went for dark post colors with a nice dark red hover:

    .entry-header .entry-title a {
    text-decoration: none;
    }
    a {
    color: #333333;
    outline: medium none;
    }

    a:hover {
    color: #ab2944;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Problems changing post colour in Twenty Twelve’ is closed to new replies.