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