|
Well, the image is in the center of the page because you have text-align: center on everything. It's doing exactly what you told it to do - putting it in the middle.
You do not need the position: relative on anything except #wrapper, and all the z-indexing is completely unnecessary. The top:0 left: 0 on #header isn't necessary either, that's going to be the default position in the normal document flow.
To put that image to the left of the swf, float it right, but make sure the floated element goes in your code before the non-floated element.
You really shouldn't use images for navigation like that, it's inaccessible. Better to use real text, a background image, and put it all in an unordered list.
__________________
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
|