Rod Castello wrote: > In IE7 the pop up window image is shifted to the right so > only half the image shows.
> Here's the link to the page it's popped from: > http://www.promotionalenergyproducts.com/images.html, click > on the top center link"EMAIL FLYER" to see what > I'm referring to. Rod, IE has a very long-standing behavior of centering block elements when text-align on a container is set to "center" despite the specs saying it should only apply to inline elements in the container. In this case it's the body with that rule, and since you have a min-width on it of 820px, IE7 will always center the inner box on that width (or a wider one if you make the window wider). The fix is to kill the text-align on the body for that popup, or at least get rid of the min-width. Big John ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
