How can I change the overall text color?

  • Unknown's avatar

    Is my theme changing all the text color?

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

  • Unknown's avatar

    If you do a search for ” color: ” without the quote marks in the CSS, that will bring up each and every occurrence of a text color setting. Copy the entire stylesheet into a plain text file and then use the “find” feature in the text editor to find them all.

    body {
    color: #FFFFFF;
    }
    
    #header #logo h1 a {
    color: #FFFFFF;
    }
    
    #header #logo #desc {
    color: #DDDDDD;
    }
    
    #top #topmenu li a {
    color: #FFFFFF;
    }
    
    .postcontent {
    color: #FFFFFF;
    }
    
    a {
    color: #A8EF9D;
    }
    
    .posttop h2.posttitle a {
    color: #AFDAFF;
    }
    
    .postmetabottom a {
    color: #FFFFFF;
    }
    
    #credits a {
    color: #FFFFFF;
    }
    
    #credits #creditsleft {
    color: #AAAAAA;
    }
  • The topic ‘How can I change the overall text color?’ is closed to new replies.