Issue with interstitial script

Status
Not open for further replies.


error.jpg


Hmm...maybe I need to upgrade my FF...or one of the extensions is causing the issue, I've had that happen before.
 
Try adding this to your CSS styles (not inter. css, the main one right in the document).

Code:
embed { z-index: 1; }
Go back to the game, hit CTRL+F5 to clear the cache and reload - and see if it's fixed. If that doesn't do it, try:
Code:
embed { z-index: 0; }
Go back to the game, hit CTRL+F5 to clear the cache and reload - and see if it's fixed. If that doesn't do it, try:
Code:
 embed { z-index: -1; }
I would think one of those should fix it.
 
Try adding this to your CSS styles (not inter. css, the main one right in the document).

Code:
embed { z-index: 1; }
Go back to the game, hit CTRL+F5 to clear the cache and reload - and see if it's fixed. If that doesn't do it, try:
Code:
embed { z-index: 0; }
Go back to the game, hit CTRL+F5 to clear the cache and reload - and see if it's fixed. If that doesn't do it, try:
Code:
 embed { z-index: -1; }
I would think one of those should fix it.

Hmmm....didn't work for me. Oh well. If I'm the only one seeing it, then no big deal.
 
Yeah, I've 2.0.0.6 also. It seems to ignore the z-index. I changed it to 100 in the insterstitial css file and -1 in the index file. Not working. Yay.
 
Now it's happening to me. I swear it wasn't happening for, it worked fine. The game was behind the ad..

It absolutely has to be a z-index issue. Instead of doing what I said with embed, it should have been object. So do exactly what I said with "object" instead of "embed". Start at 1, and go down to maybe -3.

I have a FF plugin that allows me to edit the CSS for the site I'm viewing, but for some reason I can't get the interstitial to come up.
 
Or otherwise you could add this to your interstitial code:

to the showcontainer:function:
document.getElementById('contentitem').style.display = 'none';

to the closeit:function:
document.getElementById('contentitem').style.display = '';

Edit: WF seems to put a space in "display".. ignore that.
 
Or otherwise you could add this to your interstitial code:

to the showcontainer:function:
document.getElementById('contentitem').style.display = 'none';

to the closeit:function:
document.getElementById('contentitem').style.display = '';

Edit: WF seems to put a space in "display".. ignore that.

Just add those anywhere between the { and } ?

Thanks!
 
mike i noticed that the bottom of the left column adsense skyscraper is just showing publis service ads, even after a couple of refreshes. just a heads up
 
Sorry for the late response here, I just found this by chance in a google search and just registered to wickedfire.com to help out. You will need to have either the opaque or transparent wmode set to all flash ads in order for this to work.
  1. Add the following parameter to the OBJECT tag for transparent mode:
    <param name="wmode" value="transparent">
  2. Add the following parameter to the EMBED tag for transparent mode: wmode="transparent"
  3. OR Add the following parameter to the OBJECT tag for opaque mode:
    <param name="wmode" value="opaque">
  4. OR Add the following parameter to the EMBED tag for opaque mode: wmode="opaque"
The embed and object tags will always trump the interstitial otherwise, z-index won't help you in this case.

Best of luck to you. If the ads are third party served then you may run into some major issues unless you can get the advertisers to comply.

Cheers,
-Kjuplives!
 
Status
Not open for further replies.