2
Since I found this myself, I thought I'd answer my own question in case it may help someone else.
I found the text in the top messages shared its color with the overall body text of the skin. In the
style.css file near the top was the code:
body {
color: #FFFFFF;
background-color: transparent;
margin: 0;
padding: 0;
background-image: url('images/background.jpg');
background-repeat: repeat;
background-position: right bottom;
}
The
FFFFFF defined the body text of my theme to white, which of course, did not contrast well to the almost-white background. I changed
FFFFFF to
C0C0C0, a light gray, which contrasts enough to be readable.
Thank you, Me.