From you snippet of code view it looks like it's really clean **suprised!!**, you just need to adjust the css.
Your .css file is defining a table to have that blue background...you need to find it and change it...
it will look something like this:
table {background-color: lightblue}
or
td {background-color: lightblue}
or it may even have the color as a code like background-color:#f5f5f5 or some combination of that.
|