You've got a LOT of issues there.
1 - get rid of all the position:absolute, it is not the best way to lay our your site. Learn to use the normal document flow and floats and you'll have more sucess, especially cross-browser. IE in particular has major issues with all that positioning.
2 - You're using an XHTML doctype, but you're using deprecated junk like this:
And that's why all your text looks hinky - it's all centered and that makes readability very bad. If you want to center text, or any other STYLING, use CSS to do it.
3 - z-index and the top, bottom, left and right properties ONLY work on positioned elements, so you are wasting your time putting that on anything else.
__________________
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
|