It is unfortunate about the site's content. No, we don't allow links to **** sites here. Thank you for not posting one. However, in order to help you out, if you could make a mock up of your page using only PG images and text, that might be the best way for us to diagnose the problem.
I can tell you that you might as well (if you aren't doing so already) use a valid URL DOCTYPE (as you mentioned is required in your post) like:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
or:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
One of these should be the very first thing at the top of the page's source code, followed immediately by the opening <html> tag.
The other thing I can tell you is that the problem you mention sounds like you have some centering of an absolutely positioned element. This means that one or more of the container elements for an absolutely positioned element has either the text-align:center style or the align=center attribute or is itself a <center> tag. In IE, this should be avoided. Often this can be corrected by having the most immediate containing element to the absolutely positioned element text-align:left or align=left. Sometimes one can even insert a division like that around the absolutely positioned element to take care of this.
Sometimes what one has is a relatively positioned element around an absolutely positioned one. In that case, just make sure that both elements do not have either of these centering qualities (the style or the attribute) and that their immediate parent element doesn't either.
Bookmarks