You can open the style.css file on your theme folder and add this code and check.
body.custom-background {
background-image: none !important;
}
This will basically overriding the image that is being set by the theme.
Hey Suren,
I tried inputting the code and nothing changed. I’ll copy the code that looks relevant so you can see what the css file is doing:
/* =GENERAL
————————————————————– */
@import url(https://fonts.googleapis.com/css?family=Oswald);
body {
background: #010202 url(‘images/background.jpg’) center top no-repeat fixed;
color: #C6C6C6;
/* =LAYOUT
————————————————————– */
#container {
width: 960px;
margin: 15px auto 0 auto;
}
#main {
padding: 15px;
background: url(‘images/main1-bg.png’) right top repeat-y, url(‘images/main-bg.png’);
}
#main-fullwidth {
padding: 15px;
background: url(‘images/main1-bg.png’);
I am also trying to change the color of the back round container for the main column on the left. I think right now its calling for an external image, so i don’t know if there’s a way to do this.
Thanks!