Lernender
Hallo
Ich habe ein ziemlich dickes (zumindest für mich) Problem. In Firefox steht die Seite wie sie sein soll, aber IE 6 will nicht wie Firefox. Beim einrichten für IE schiebt sich nun jedoch das 2. BG bild über einen Link, sodass der nicht mehr begangbar ist. Aber macht euch am besten selbst mal ein Bild: yougend.de
Hier sind nun die index.php und die style.css:
index.php
style.css
Der Code ist vllt nicht der schönste, aber ich bin ja noch Codeanfänger
Hoffe ihr könnt mir irgendwie helfen.
Danke und Gruß
Ich habe ein ziemlich dickes (zumindest für mich) Problem. In Firefox steht die Seite wie sie sein soll, aber IE 6 will nicht wie Firefox. Beim einrichten für IE schiebt sich nun jedoch das 2. BG bild über einen Link, sodass der nicht mehr begangbar ist. Aber macht euch am besten selbst mal ein Bild: yougend.de
Hier sind nun die index.php und die style.css:
index.php
Code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Forum - Für junge Christen in Lippe</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
<script src="Scripts/hover.js" type="text/javascript"></script>
</head>
<body class="style">
<!--[if gte IE 5.5]>
<![if lt IE 7]>
<style type="text/css">
#logo img, #bg img, #videobg img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#logo {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/logo.png');
z-index:2;
padding-left:-300px;
display: inline-block;
}
#videobg {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/hintervideo.png');
display: inline-block;
margin-top:-1000px;
}
#bg {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bg.png',sizingMethod='scale');
z-index:1;
margin-top:-502px;
display: inline-block;
}
#forumpromo {
margin-top: -1000px;}
</style>
<![endif]>
<![endif]-->
<div id="logo" style="height:397; width:78;">
<a href="index.php" onmouseover="lightup('pic1')" onmouseout="turnoff('pic1')">
<img src="images/logo.png" alt="logo" name="pic1" width="78" height="397" border="0" /></a>
</div>
<div id="bg" style="height:100%; width:100%;">
<img src="images/bg.png" width="100%" height="100%" alt="bg" />
</div>
<div id="videobg" style="height:672; width:841;">
<img src="images/hintervideo.png" alt="vidbg" />
</div>
<div id="forumpromo">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="640" height="480" id="FLVPlayer">
<param name="movie" value="FLVPlayer_Progressive.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=PromoForum&autoPlay=true&autoRewind=false" />
<param name="swfversion" value="8,0,0,0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don?t want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="640" height="480">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=PromoForum&autoPlay=true&autoRewind=false" />
<param name="swfversion" value="8,0,0,0" />
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
<div id="copyright">
<p>© yougend.de 2009</p>
</div>
<script type="text/javascript">
<!--
swfobject.registerObject("FLVPlayer");
//-->
</script>
</body>
</html>
Code:
@charset "utf-8";
html {
height:100%;
}
body {
font: 100% Verdana, Arial, Helvetica, sans-serif;
background-color:#6d9fd1;
background: url(../images/bg.gif);
height:100%;
margin: 0;
padding: 0;
text-align: center;
}
.style #bg {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-4;
}
.style #videobg {
margin-left:17%;
margin-top:-2%;
position:fixed;
z-index:-3;
}
.style #logo {
margin-left:15%;
margin-top:8%;
position:fixed;
z-index:1;
}
.style #forumpromo {
margin-left:25%;
margin-top:5%;
position:fixed;
}
.style #copyright {
font: 100% Kartika;
color:#09396a;
text-align: center;
position:absolute;
padding-left:47%;
padding-top:45%;
z-index:-2;
}
Hoffe ihr könnt mir irgendwie helfen.
Danke und Gruß