Bonjour,
J'essaye d'afficher un bloc id="googFixed" en position fixed. Quand la taille de la fenêtre est supérieur a 1255px celui-ci s'affiche. Dans ce bloc il y a une publicité adense
Cela fonctionne bien sous FireFox et Chrome il se postionne a top:150px et left:200px de la fenêtre du navigateur. Mais sous IE et opéra il passe en dessous de ma div nomée "id=pubGoo"
Pouvez-vous m'aider s'il vous plait ?
Ci-dessous mon code source :
Modifié par jose2204 (01 Nov 2012 - 16:33)
J'essaye d'afficher un bloc id="googFixed" en position fixed. Quand la taille de la fenêtre est supérieur a 1255px celui-ci s'affiche. Dans ce bloc il y a une publicité adense
Cela fonctionne bien sous FireFox et Chrome il se postionne a top:150px et left:200px de la fenêtre du navigateur. Mais sous IE et opéra il passe en dessous de ma div nomée "id=pubGoo"
Pouvez-vous m'aider s'il vous plait ?
Ci-dessous mon code source :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<style>
div{
border: 1px solid red;
}
</style>
</head>
<div align="center" >
<!-- header -->
<div style="width:936px;height:110px;">
</div>
<!-- contenu -->
<div style="width:936px;height:900px;" id="pubGoo">
</div>
<script type='text/javascript'>
var window_width=$(window).width();
if( window_width > 1255) {
//var widthRestant = ((window_width - 936)/2)-160;
document.write("<div id=\"googFixed\" style=\"position:fixed;top:150px;left:170px;width:165px;height:610px;border:1px solid black;z-index: 210;\">");
document.write("<div style=\"position:relative\">");
document.write("<script type=\"text/javascript\"><!--\n");
document.write("google_ad_client = \"ca-pub-xxxx\";\n");
document.write("/* 160-600-livefoot-index */\n");
document.write("google_ad_slot = \"xxxx\";\n");
document.write("google_ad_width = 160;\n");
document.write("google_ad_height = 600;\n");
document.write("//-->\n");
document.write("</"+"script>\n");
document.write("<script type=\"text/javascript\"\n");
document.write(" src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n");
document.write("</"+"script>\n");
document.write("</div></div>");
}
</script>
</div>
</body>
</html>
Modifié par jose2204 (01 Nov 2012 - 16:33)