• Resolved krystie

    (@krystie)


    Hello. My site is here. Im trying to change the color of my post titles (and my tag cloud widget on the left sidebar) to black. I have tried adjusting the blue.css and changed this to black:

    a {
    color:#CC0099;
    text-decoration:none;
    }

    which works, but it also changed my link colors WITHIN my post to black (which I dont want to do).Would very much appreciate some help! Im a newbie! ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter krystie

    (@krystie)

    So I have changed it to black, and the title and my links appear fine on the homepage. But once you click a specific blog title, all of my links WITHIN my post turn to black also. I want to keep them the same color (purple) as on the home page. Thanks!

    you can add a new, more specific styles to style.css; for instance:

    h2 a { color: #000; }

    and

    .tagcloud a { color: #000; }

    and put the general style back to:

    a {
    color:#CC0099;
    text-decoration:none;
    }

    Thread Starter krystie

    (@krystie)

    Thankyou alchymyth, I have managed to fix the tag cloud with your code, but the header is still a mystery. I changed the general style in blue.css to be :

    color:#CC0099;

    and this is the code I have in the style.css

    #content h2 {
    font-size:1.6em;
    color:#000;

    but it still doesnt seem to be working? Do I have it in the right spot?

    the header on the front page is a link, and has therefore the style of:

    h2 a { ... }

    or

    #content h2 a { ... }

    (these styles are probably non-existant; -> make new ones)

    Thread Starter krystie

    (@krystie)

    perfect, it worked. Thank you again for your help!!!!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change color of post titles, not links within post content’ is closed to new replies.