Post and link color with Misty Lake

  • Unknown's avatar

    Does somedy knows which CSS code could be used to modify the original color of post titles and links with Misty Lake theme ? The original color is a kind of beige/brown that is not really attractive. The color changes when you go with the mouse on the title. But how to replace the brown color ? Thank you for help.

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

  • Unknown's avatar

    Hi, the following will allow you to change the color of the post titles and metadata below the posts and also links inserted into the posts and pages.

    a, a:visited, .post-label, .page-links {
        color: #866830;
    }

    The following will let you change the color of the links in the sidebar widgets.

    .widget a {
        color: #674F21;
    }
  • Unknown's avatar

    I did it, but apparently it does not work. The post title color remains brown…

  • Unknown's avatar

    Hi, I just tried the code again, edited the original color I included in the code, and all the links on the site you referenced changed colors. Did you edit the color code that was in the declarations and put in the color you wanted?

    a, a:visited, .post-label, .page-links {
        color: #CC0000;
    }
    .widget a {
        color: #CC0000;
    }
  • Unknown's avatar

    If you want to change the color of the titles on the single post page (which are not links) the following would be the code. Edit the color as desired.

    .entry-title, #respond h3, .comments-title {
        color: #0B2E59;
    }
  • Unknown's avatar

    In fact, the CSS :
    a, a:visited, .post-label, .page-links {
    color: #CC0000;
    }
    is changing both the post title color AND the page (site) title color.
    Is there a code to keep the site title in white for example and change the post titles color only ?

  • Unknown's avatar

    Hmmm, the site title should not have changed color with the code I gave since the site title has its own, more specific CSS. Add the following at the bottom of your existing custom CSS and edit the color code as desired (the code I have is an obnoxious green).

    .site-title a {
        color: #00dd11;
    }
  • Unknown's avatar

    Great ! It works.
    Thank you for your help.

  • Unknown's avatar
  • The topic ‘Post and link color with Misty Lake’ is closed to new replies.