Hi heartcenter,
It looks like you’ve been working with a child theme, therefore you can add your modifications directly in style.css. To get rid of the footer background image, you could modify the CSS rules for the #footer element. This is what it looks like at present:
#footer {
border: 0;
clear: both;
margin: 0;
padding-top: 20px;
text-align: center;
vertical-align: bottom;
width: 100%;
height: 200px;
background: url( i/backgrounds/roundtable-bg-footer-1.jpg ) bottom center no-repeat;
/*background-attachment: fixed;*/
}
You need to change the background declaration like this
#footer {
border: 0;
clear: both;
margin: 0;
padding-top: 20px;
text-align: center;
vertical-align: bottom;
width: 100%;
height: 200px;
background-color: red;
background-image: none;
/*background-attachment: fixed;*/
}
Here I got rid of the background image and made the background color red, just for demonstration purposes (you’re free to add whatever color you like).
I hope this helps.
– Antonietta