Viewing 2 replies - 1 through 2 (of 2 total)
  • all the items have their own css.. the temp depending on which one you want black is

    .wu-forecast-wrapper .wu-cond-highlow .wu-cond-high {
    color: #d5202a;
    padding-right: 0.5em;
    }

    so you would change that in your css to

    .wu-forecast-wrapper .wu-cond-highlow .wu-cond-high {
    color: #000 !important;
    padding-right: 0.5em;
    }

    You might want to leave the padding out.. but you can play around.. Download FF and then install the FIREBUG addon.. You will be able to instantly see what code is working and how to change it on the fly..

    This is the blue’s code

    .wu-forecast-wrapper .wu-cond-highlow .wu-cond-low {
    color: #0053ae;
    }

    so once again, you could do:

    .wu-forecast-wrapper .wu-cond-highlow .wu-cond-low {
    color: #000 !important;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Font Color?’ is closed to new replies.