How to add two background images - left and right from center column
I have this css: #wrapper1 { min-width:1020px; min-height:100%; } #wrapper2 { height:100%; background: url('img1.jpg') -100px 300px no-repeat, url('img2.jpg') 1165px 300px no-repeat; } #wrapper3 { width:1020px; margin:0 auto; } and this html: <div id="wrapper1"> <div id="wrapper2"> <div id="wrapper3" class="clearfix" <!-- content here --> <p>blah blah blah</p> </div> </div> </div> I need to add 2 images - left and right from center column without center column width changes and that the images did not affect the overall width of the page. Example: I can add images, and made a some attempts