Results 1 to 6 of 6

Thread: IE background repaint issue - tried all the hacks

  1. #1
    Join Date
    Nov 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default IE background repaint issue - tried all the hacks

    i have been chasing this around for days now - I have tried this fix, the php hack, the htacess fix - nada - tried on windows XP, vista, 6 and 7.

    the background redraws - no matter what. The only way I can get it not to is to include the css styles in the html document - which I can’t do - way too many includes.

    Here are the files - if you go between them - the background should repaint -that is my experience..

    http://www.por7al.com/chargersguide/2.html
    http://www.por7al.com/chargersguide/1.html

    Any help is appreciated

    There are no issues in ffox or on a mac.

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Quote Originally Posted by gregback99@hotmail.com View Post
    the background redraws
    the background should repaint
    What do you mean by that and what is the difference between the two pages?

  3. #3
    Join Date
    Nov 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    nothing they are identical. But when you go between them, back, forward, the background repaints. - or flashes

    does not happen in FFox or a mac

  4. #4
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    I don't think it "repaints", I think all pages flash like that in IE.

  5. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I recently have been observing this in another thread, and now recall an issue with it some time ago on a site I master. The thing is that in IE the style resources are not loaded as fast as in other browsers, and that the natural state of the page is white. If you have the style right on the page, so that it is parsed immediately, that will take care of it. It really is a bug though, particularly with background images in IE as they are not properly cached.

    So, putting it on the page just loads it faster. You could try applying the style to the html element as well though (no promises):

    Code:
    html, body {
    	background-image: url(http://chargersguide.morris-communication.com/images/CHA_Background.jpg);
    	margin:0;
    	padding:0;
    }
    Last edited by jscheuer1; 11-20-2008 at 07:06 AM. Reason: upgrade code
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  6. #6
    Join Date
    Nov 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    that was a great idea - had great hopes, but alas - IE is a total special needs problem child.

    Thanks for trying!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •