I'm trying to make a div with an image in it that I'm using as a background image. I'd like to give it a range, no smaller then 1000px and no bigger then 1500px width wise. I'd like it to be centered. I had thought I could just set it to align="center" and style="max-width:1500px;min-width:1000px;overflow:hidden;" But this doesn't seem to work, so I changed it, putting it inside a containing div align="center" and width 100% and put the overflow on this containing div instead. What ends up happening is it doesn't center, it starts on the left and cuts off the right side and stays at a width of 1500px.
I'm not sure how to position this.
This is the url: http://www.klossal.com/portfolio/index_alt.html it's the large image of the planet.
background: url(/portfolio/space_1_header.png) top center no-repeat;on your#MAIN_CONTAINERdiv? Why are you trying to not make your background image a real background image? Since your image is 1500px, it will never be more, and if you seem to have limited your site width at points that it is not likely to fall below 1000px, so your should have no issues. – ScottS Apr 2 '12 at 13:29