You could try something like this. If your current BODY code looks like:
Code:
<body>
...lots of code and content here...
</body>
Add a DIV tag around everything:
Code:
<body>
<div id="background2">
...lots of code and content here...
</div>
</body>
And then in your CSS:
Code:
body {
background: url(first-background.jpg) no-repeat top left;
}
#background2 {
background: url(second-background.jpg) no-repeat top right;
}
(You may also need to adjust the margins a bit)
__________________
Please login or register to view this content. Registration is FREE
I solve code problems, browser compatibility (including IE 6), Wordpress trouble, the works.
Last edited by Crimson; 10-04-2010 at 04:37 PM..
|