Daniel Kessler wrote: > That might be because I made the changes that Holly suggested. I > have a page (http://sph.umd.edu/events/wellness2/ > conditions_treated.html) that has a paragraph at the bottom, "Please > call if . . . ". I was trying to shove it to the left, but it was > being cut off when it wandered into the first column (in IE6 only). > > Holly's correction worked to make it so that the text was no longer > cut off. However it introduced an allergy to my content on another > page where on IE6 only, a couple of white pixels appear on the right > size all the way down. http://sph.umd.edu/events/wellness2/ > about_acupuncture.html > This goes away if I delete the top half of the content, but I > couldn't narrow it down to particular content. > > daniel > > > > >
On the page <http://sph.umd.edu/events/wellness2/about_acupuncture.html> in the source document add a body id #acupuncture to target that page. <title>Boonsboro Wellness Center</title> </head> <body id="acupuncture"><------------------- :: add :: <div id="container"> In the CSS add this selector to target that id on that page to close the vertical gap on the right side in IE/6.: * html body#acupuncture #content {overflow-x:hidden;} BTW, the text in the header walks out the bottom of it with font-scaling in compliant browsers a little early if that is of any concern... -- A thin red line and a salmon-color ampersand forthcoming. http://chelseacreekstudio.com/ ______________________________________________________________________ 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/
