Hi there,
If I have understood correctly you need to make the following changes. Before you do make changes take a backup of the files first so you can recover from any errors.
Open style1.css and at line 8 find the following code...
body {
background: none repeat scroll 0 0 transparent;
color: #000000;
}
Change the transparent to the colour you wish to be seen either side of the background image. For example...body {
background: none repeat scroll 0 0 #FF0000;
color: #000000;
}
Now at line 9 find the following code...
body.backgroundlevel-high #woodbg, body.backgroundlevel-medium #woodbg {
background: url("../images/backgrounds/style1/wood.jpg") no-repeat scroll 0 0 #110302;
margin-left: 350px;
}
and set the #110302 to transparent to look like this...
body.backgroundlevel-high #woodbg, body.backgroundlevel-medium #woodbg {
background: url("../images/backgrounds/style1/wood.jpg") no-repeat scroll 0 0 transparent;
margin-left: 350px;
}
If this resolves your problem then please edit your first post by adding SOLVED at the start of the title and then select the green tick icon. This lets the moderators know that it can be moved to the solved section.
Thanks for your cooperation