jasonc Posted May 6, 2010 Share Posted May 6, 2010 can anyone suggest how to add background images to the left and right of a footer div. as the following does not work #footer{ clear:both; background:#7AB3D2; text-align:right; padding:3px 0; background: url(images/bottom_right_trans.gif); background-repeat: no-repeat; background-position: right bottom;background: url(images/bottom_left_trans.gif); background-repeat: no-repeat; background-position: left bottom;} <div id="footer">some text here</div> Quote Link to comment Share on other sites More sharing options...
Bar2aYunie Posted May 8, 2010 Share Posted May 8, 2010 Try using two divs: <div id="backgroundone"> <div id="backgroundtwo"> </div> </div> You can then style everything with css. Try this. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.