There is the problem. Most of the PNG fixes out there assign the css property "static" to all PNGs.
I think the only solution to your problem is to use the Microsoft alphaImageLoader filter. http://thedesignspace.net/MT2archives/000103.html It requires you to apply a proprietary filter to an individual images by adding a class to them. I had to use this same fix on a project a couple weeks back. Cheers, Jamie On Wed, Apr 1, 2009 at 12:19 AM, [email protected] < [email protected]> wrote: > > Gabe - > > Thanks, but that didn't seem to have any effect on it. The image > stays in place while the text scrolls. I just figured out what the > problem is, I just don't know how to fix it. I am using a Javascript > fix for PNG transparency support in IE6. When I remove the fix for > this div the image scrolls properly. When I put it back, the image is > stationary. > > Now I'm off to read about the DD_belatedPNG.js script. > > Steve Lockridge > [email protected] > > > > On Mar 30, 9:19 am, gabe <[email protected]> wrote: > > The problem with IE6 is the overflow:hidden command. IE6 ignores it. > > To fix it, add zoom:1; to your code. > > > > *html .contentbox { > > zoom 1; > > > > } > > > > its a pretty simple html hack, but I think it should work. > > > > On Mar 29, 11:00 pm, "[email protected]" > > > > <[email protected]> wrote: > > > I have two divs that are set to scroll if there is more content than > > > can be viewed in the div. The problem is IE6. > > > > > This works perfectly in FF. All of the contents in the boxes scrolls > > > nicely together. However, in IE6, the image at the top just sits > > > there. The text scrolls up and gets lost in the image (they are the > > > same color). I can't tell if the text is on top of or below the > > > image, but that is probably irrelevant. > > > > > The page can be seen athttp://www.bordertownband.us/test/index.php. > > > > > Here is the CSS code for one of the boxes (they are coded the same): > > > > > .contentbox { > > > background: #FAFAED; > > > border: 1px solid #787650; > > > width: 461px; > > > height: 100%; > > > margin: 0; > > > float: left; > > > overflow-x: hidden; > > > overflow-y: auto; > > > > > } > > > > > .contentbox #contentboxtext { > > > width: 437px; > > > margin: 10px; > > > > > } > > > > > .contentbox #contentboxtext img { > > > margin-bottom: 10px; > > > > > } > > > > > Here is the HTML code: > > > > > <div id="contentboxtext"> > > > <img src="images/welcome_to_bordertown_head.png" width="432" > > > height="22" alt="Bordertown Band Party Band Classic Rock Modern Rock > > > Parties Weddings Wedding Receptions Birthday Parties"> > > > <p>Bordertown was formed by a group of experienced musicians > who > > > wanted to have fun by playing songs they like and that they grew up > > > with. Here is a list of songs Bordertown is working on now. Bordertown > > > will add life to any atmosphere such as wedding receptions, > > > restaurants, coffee shops, concerts, birthday parties, bar mitzvahs, > > > political rallies, whatever!</p> > > > <p>Bordertown is always available but never free! (that's a > joke)</p> > > > <ul> > > > <li>Bad Day - Daniel Powter</li> > > > <li>Don't Stop - Fleetwood Mac</li> > > > <li>Falling In Love At A Coffee Shop - Landon Pigg</li> > > > <li>Have A Nice Day - Bon Jovi</li> > > > <li>How To Save A Life - The Fray</li> > > > <li>Jammin' Me - Tom Petty</li> > > > <li>Over My Head (Cable Car) - The Fray</li> > > > <li>Stop And Stare - OneRepublic</li> > > > <li>True Lies - Kenny Wayne Shepherd</li> > > > <li>Wanted Dead Or Alive - Bon Jovi</li> > > > </ul> > > > </div> > > > > > Any help would be greatly appreciated. > > > --~--~---------~--~----~------------~-------~--~----~ -- You received this because you are subscribed to the "Design the Web with CSS" at Google groups. To post: [email protected] To unsubscribe: [email protected] -~----------~----~----~----~------~----~------~--~---
