|
There is no way of fixing this without having to completely redesign the site. It looks like your designer was an amateur and just used Dreamweaver to use absolute positioning. Basically, this means that every element on the page is set to a certain X,Y coordinate. Even if you surrounded all of the content with a wrapper and centered the wrapper, everything would still stay in their original position because it's absolute.
I'm sorry to say but I think your colleague needs to study up on some basic web design techniques. Just looking through the source code I found a ton of poor design choices. In fact, I found a total of 56 warnings and 33 errors through my validator. I'm sorry I don't have a solution for you, but unless you want to go through the process of redesigning the page, I'd say you're stuck with what you have.
Tips:
-Don't use images for the top navigation, that doesn't make any sense to me. Why didn't you just make a text menu instead of having rollovers
-Don't use BMP's as your image format. Use GIF or JPG as they have much better compression.
-Don't use Dreamweaver to do EVERYTHING on your site. Just as any other WYSIWYG editor, it has a tendency to create "fluffy" code and extra tags. Look how many </a> tags there are.
|