What are you doing with the comment tags????
The use of <!-- --> tags to hide code from the browser is very iffy now. The standard has changed, and browsers are changing to match, one at a time.
Any trick that works now will be very short-lived, as more browsers make the changes. Use comments only to enclose comments.
MidiMagic
Nearly a Senior Poster
3,319 posts since Jan 2007
Reputation Points: 730
Solved Threads: 182
Defining widths and heights in pixels makes the site incompatible with many screen resolutions. Use CSS to define sizes as percentages or points.
Also, don't put size styles (width, height) and surrounding styles (margin, border, padding) in the same tag. That guarantees an IE/FF incompatibility, because IE doesn't obey the standard order of rendering.
IE crams the surrounding styles inside the defined size. The standard places them outside the defined size.
Don't use absolute positioning.
MidiMagic
Nearly a Senior Poster
3,319 posts since Jan 2007
Reputation Points: 730
Solved Threads: 182