I'm working on adding rounded corners to the background of my site. I successfuly added rounded corners at the top of the page using http://www.roundedcornr.com/ to creat gif images (one for the 2 top corners and a second for the 2 bottom corners). my problem is a i cannot figure out where to put the url for the image file for the bottom corners in my css file.
here's the code that worked for the top:
#wrap {
background: #FCF9F0 url(images/roundedcornr_915472_top.gif) no-repeat top center;
width: 960px;
margin: 30px auto 30px;
padding: 0px;
position: relative;
border: 0px solid #bdd3eb;
}
thank you!