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> Link to comment https://forums.phpfreaks.com/topic/200877-adding-background-images-to-left-and-right-of-footer-div/ 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. Link to comment https://forums.phpfreaks.com/topic/200877-adding-background-images-to-left-and-right-of-footer-div/#findComment-1055037 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.