I'm struggling to bug fix an issue whereby I have two banners in a page that are both appearing perfectly on our dev server, then when moved to staging the MPU disappears as in the code to embed it is there but there is no flash, right click on the area reveals html. The Leaderboard remains fine. To complicate things, the MPU IS appearing on our dev server but it's when moved to staging it fails to appear, and then only failing to appear in IE. The css I've been tweaking and retweaking to try and get this to work is as follows:

div#pagewrapper div#skyscraper {
    position:absolute;
    left:768px;
    top:40px;
    width:124px;
    height:618px;
    padding-left:0px;
    padding-top:0px;
}

div#pagewrapper div#ad300250 {
    position:relative;
    float:left;
    width:300px;
    height:264px;
    padding-left:14px;
    padding-top:0px;
    z-index:214748364;
}

(I've just tried pushing the z index way up in case it was being covered but to no avail)

Also the banners on dev are represented like this:

<!-- BEGIN BANNER CODE 120x600 -->
        <img src="images/tempBanner_120x600.jpg"/>
    <!-- END BANNER CODE -->
        </div>

        <div id="ad300250">

    <!-- BEGIN BANNER CODE 300x250 -->

        <img src="images/tempBanner_300x250.jpg"/>
    <!-- END BANNER CODE -->

The code in between the comments is replaced automatically when pushed to staging, but still appears as it should for both banners. Any advice appreciated, Thanks

link|improve this question
Have you checked IE's rendering mode? Look in dev tools (F12) to confirm that it's not going into compatibility mode for some reason. – Spudley Oct 14 '11 at 15:09
Thank for this, when I check this it tells me Document Mode is Internet Explorer 8 standards (Page default), is this to be expected? Thanks – user995432 Oct 14 '11 at 16:24
depends on the version you're using (please edit the question to specify it!). If you're using IE8, then yes that is what you would expect. If you're using IE9, then being in IE8 standards mode is probably not what you want. I can't see anything specific wrong with the code you've posted; perhaps you could provide a demo of the problem, either pointing to your site or using something like JSFiddle.net so we can see it going wrong. Add a link into the question for us. – Spudley Oct 15 '11 at 13:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.