Matt Quackenbush wrote on Sat, Dec 5, 2009 at 8:29 PM, 

>Jessica Kennedy wrote: 
> >
> > I need someone to tell me EXACTLY how to go about doing this.  I
know it
> > can't be hard, there are a million resources that almost tell me.
> 
> 
> Statements like these posted on *FREE* help forums or mailing lists
really
> boggle my mind.  If your situation is so dire, might I suggest you
hire a
> competent person to get it done. [..]

I had to have a little chuckle at that, because I hear you Matt. 

The problem in question is a common one and has been known in the CSS
world for some time (it's a background image issue) and is easily
resolved after a little Googling, either by:

1.  Contacting your server admin and having them apply the cache control
fix to IIS (Dave has already linked a solution for that method although
with all your research I imagine you've read about this several times,
so I don't really understand the problem) 

OR 

2. by applying a little piece of JavaScript in the head of your
document, like so:
<!--[if IE 6]>
<script type="text/javascript">
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
</script>
<![endif]-->

which can be found here: 
http://snipplr.com/view/1270/stop-annoying-ie-background-image-flicker-b
ug/  
and is the second link in a google containing "ie background image
flicker".  

I am of course presuming it is IE6 that is affected, as you have yet to
answer that question.

HTH
Mark

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328900
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to