Hallo zusammen,
ich arbeite momentan an http://neu.loha-bar.de
Im Firefox werden dort die Bilder (Home, Kalender, Impressum) angezeigt; im IE 5.2 nicht.
Vielleicht kann mir mal einer über den Quelltext schaun, ich weiss nämlich nicht, worans liegt
Zeile 21, 24 und 27 sind die drei Bilder:
PHP
<?php
error_reporting(E_ALL);
session_start();
header('Content-Type: text/html; charset=iso-8859-1');
define("LOHA_ACCEPT", "checked");
$site = (empty($_GET['s'])) ? 2 : $_GET['s'] ;
include("inc/config.inc.php");
include("inc/counter.inc.php");
?>
<!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="en" lang="en">
<head>
<title>Loha-Bar.de - Die erste Präsentation</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
</head>
<body>
<div class="head">
<img id="logo_loha" src="img/logo.png" width="350" height="154" alt="Loha - Logo" />
<img id="logo_cocktail" src="img/cocktail.png" alt="cocktail" width="176" height="340" />
<a href="index.php?s=2"><img id="link_home" src="img/link<? echo (($site==2)?"_load":"");?>_home.png" alt="Home" onmouseover="this.src='img/link_load_home.png'"<?
echo (($site!=2) ? " onmouseout=\"this.src='img/link_home.png'\" " : " ");
?>/></a>
<a href="index.php?s=3"><img id="link_kalender" src="img/link<? echo (($site==3)?"_load":"");?>_kalender.png" alt="Kalender" onmouseover="this.src='img/link_load_kalender.png'"<?
echo (($site!=3) ? " onmouseout=\"this.src='img/link_kalender.png'\" " : " ");
?>/></a>
<a href="index.php?s=4"><img id="link_impressum" src="img/link<? echo (($site==4)?"_load":"");?>_impressum.png" alt="Impressum" onmouseover="this.src='img/link_load_impressum.png'"<?
echo (($site!=4) ? " onmouseout=\"this.src='img/link_impressum.png'\" " : " ");
?>/></a>
</div>
//etc. ...
Alles anzeigen
Hier noch der CSS Teil (Zeile 33; 39; 45) :
Code
body
{
background-image: url("img/bg.gif");
background-repeat:repeat-x;
background-position:0 0;
background-attachment:fixed;
background-color: #EC921A;
}
div.head
{
position: relative;
border: 0px solid black;
vertical-align: top;
padding: 1%;
width: 900px;
height: 300px;
margin: 7%;
margin-top: 0;
margin-bottom: 0;
}
#logo_loha
{
position: absolute;
top: 40px;
left: 200px;
}
#logo_cocktail
{
position: absolute;
top: 0px;
left: 580px;
}
#link_home
{
position: absolute;
top: 230px;
left: 350px;
}
#link_kalender
{
position: absolute;
top: 230px;
left: 500px;
}
#link_impressum
{
position: absolute;
top: 230px;
left: 750px;
}
// etc. ....
Alles anzeigen
Wäre ja echt blöde, wenn ich das nich hinbekäm..
Funktionierts vielleicht bei ner neueren Version vom IE ohne Probs?
Danke erstma, Yngvar