The problem is that you've got all that nasty absolute positioning in there, which makes it extremely difficult to have anything centered the way you'd like. Get rid of all that, you don't need it and it WILL cause you a lot of headaches, especially with IE.
However, if you're not ready for that - and you may not be if you're letting a GRAPHICS program produce your html - then make this change:
Quote:
#homepage_container {
position:relative;
margin: 0 auto;
width:919px;
height:742px;
}
|
That should get the container centered, and everything inside it should be positioned relative to the container they are in.
Learn to use the normal document flow - learn HTML and CSS, and check out the tutorial at www.cssslicingguide.com.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|