I am not much of a coder but looking at your ZenCart Site, the color #153f6e is the predominant color showing. The only place this shows up in your css is in the following code
Code:
div#b1 {
background: #153F6E url(includes/templates/bryancustom/images/clickpop_towers_bg.jpg) fixed bottom repeat-x;
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
You might try this or make it transparent
div#b1 {
Code:
background: url(includes/templates/bryancustom/images/clickpop_towers_bg.jpg) fixed bottom repeat-x;
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;