2 Days? Then you're already familiar with your stylesheet.css then, right?

Find this section of code:

Code:
.leftBoxHeading, .centerBoxHeading {
    margin: 0em;
    background-color: #015258;
    padding: 0.5em 0.2em; 
    }
And add-------color: #fff; to make the whole section look like this:

Code:
.leftBoxHeading, .centerBoxHeading {
    margin: 0em;
    background-color: #015258;
    padding: 0.5em 0.2em;
    color: #fff; 
    }
That will make the text in ALL center boxes AND ALL left side boxes be white.

Hope this helps.