I have to alter one of wordpress themes, I got new images to replace the old ones, but ingenious designer has made some changes driving me mad. As it is I need to place two distinct background images on left and right side of main body. For I am only half-baked in such things I do not even know whether it is possible. Current css file states this:
body {
...
background: #ffffff url('images/bg.jpg') repeat-x;
}
#bbody {
background: url('images/main.jpg') no-repeat;
}
There is one image repeated as background and another one simply laid over. Is there any way to split background in two halves or do I have to kick designer's ass? Thanks for any help, Jan.
body {
...
background: #ffffff url('images/bg.jpg') repeat-x;
}
#bbody {
background: url('images/main.jpg') no-repeat;
}
There is one image repeated as background and another one simply laid over. Is there any way to split background in two halves or do I have to kick designer's ass? Thanks for any help, Jan.
Comment