| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: Jan 2004 Location: Phnom Penh
Posts: 19
![]() | Bug(?): Frames and background images in IE6 Have you encountered this bug in IE6 with background-repeat repeat-x or repeat-y in body? If the page is in a frame it will not render the page right, instead the page becomes un-readable (if not already on the load, then atleast when you use scrollbars)… I only found out this because if you send a link to a hotmail account, the bloody hotmail opens the link to a window with frames… annoying as *beep*! What I have in my css is something simple like... body{ background-image: url(../images/topgradientgrey.gif); background-repeat: repeat-x; } You can see the bug live at http://www.interquess.com/test/ Bug is seen atleast w/ IE6 and windows XP… works fine in opera and gecko. Anybody had the same problem? Solutions?
__________________ "He's really interested in architecture. But not the kind of architecture I'm interested in." Miika, very old thingi at http://www.timehouse.fi/miikan |
| |
| | #2 (permalink) |
| NamePros Regular Join Date: Sep 2003
Posts: 889
![]() ![]() | Wierd... I checked it out and it was alll messed up when I first loaded it... I minimized IE and then had it poped up again and it was correct... It looks correct in Mozilla... So it def. seems to be a bug.
__________________ Online Time Tracking :) |
| |
| | THREAD STARTER #3 (permalink) |
| New Member Join Date: Jan 2004 Location: Phnom Penh
Posts: 19
![]() | Yep. I sent a mail to microsoft support as well, and see if they have an answer... It seems to be some sort of screen refresh bug... if you use the scrollbars it never refreshes correctly... And the bug only appears if I set repeat-x or repeat-y for the bgimage, works fine if the image is repeated normally.
__________________ "He's really interested in architecture. But not the kind of architecture I'm interested in." Miika, very old thingi at http://www.timehouse.fi/miikan |
| |
| | THREAD STARTER #4 (permalink) |
| New Member Join Date: Jan 2004 Location: Phnom Penh
Posts: 19
![]() | I changed the url http://www.interquess.com/test/ a bit (made it even simpler...) There's more discussion about this at http://www.experts-exchange.com/Web/..._20860329.html So far nothing more but a bug...
__________________ "He's really interested in architecture. But not the kind of architecture I'm interested in." Miika, very old thingi at http://www.timehouse.fi/miikan |
| |
| | THREAD STARTER #5 (permalink) |
| New Member Join Date: Jan 2004 Location: Phnom Penh
Posts: 19
![]() | The answer found! Having background-color as well does the trick... background-color: #fff; background-image:url(bgimage.gif); background-repeat: repeat-x;
__________________ "He's really interested in architecture. But not the kind of architecture I'm interested in." Miika, very old thingi at http://www.timehouse.fi/miikan |
| |