hi dbongi22,
Go to your style.css in your theme or make child theme and open style.css
on style.css on line no 224 you find these code
body {
background-attachment: fixed;
background-color: #5E5E5E;
background-image: url("images/Bottom_texture.jpg");
background-position: left top;
background-repeat: repeat;
color: #000000;
height: 100%;
margin: 0;
min-height: 100%;
min-width: 1000px;
padding: 0;
}
just replace it with this code
body {
background-attachment: fixed;
background-color: #FFF;
background-position: left top;
background-repeat: repeat;
color: #000000;
height: 100%;
margin: 0;
min-height: 100%;
min-width: 1000px;
padding: 0;
}
change your background color whatever you want and one thing more at line no 239 you`ll find this code so remove it also
background-image: url("images/Middle_texture.jpg");
and make sure to backup your css before changing hope it`ll help you