JAGOGNUSSEL
Neues Mitglied
Hi Leute!
Habe ne neue HP gemacht und bin soweit auch recht zufrieden, weil sie valide ist.
Doch es gibt ein Problemchen! Ich sehe alle Elemente, wie Logo, Text, Navi und so im MSIE, im Netscape 7.1 und auch im FF.
Doch ein Bekannter von mir und auch meine Kundin, sehen nicht das Logo und auch nicht die Navigation. Eine Freundin sieht wiederum auch alles.
Jetzt frage ich mich, ob ich nun Mist im Code geschrieben habe, oder aber, ob bei denen im Browser was geblockt wurde.
Die Links der Navigation funktionieren zwar, doch gehen sie noch in's Leere, da ich diese Seiten noch nicht auf den Server gelegt habe.
Hat jemand eine Idee oder Tip für mich?
Über eine Nachricht würde mich sehr freuen.
Jagognussel
Habe ne neue HP gemacht und bin soweit auch recht zufrieden, weil sie valide ist.
Doch es gibt ein Problemchen! Ich sehe alle Elemente, wie Logo, Text, Navi und so im MSIE, im Netscape 7.1 und auch im FF.
Doch ein Bekannter von mir und auch meine Kundin, sehen nicht das Logo und auch nicht die Navigation. Eine Freundin sieht wiederum auch alles.
Jetzt frage ich mich, ob ich nun Mist im Code geschrieben habe, oder aber, ob bei denen im Browser was geblockt wurde.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL]http://www.w3.org/TR/html4/loose.dtd[/URL]">
<html>
<head>
<title>KundenInfo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
<meta http-equiv="Content-Script-Type" content="text/javascript"><style type="text/css">
* {
margin:0;
padding:0;
}
html, body {
height:100%;
}
body {
background-color: #FFFFFF;
color:#000090;
text-align:center;
background-attachment : fixed;
background-image : url(objekts/verlauf.gif);
background-position : bottom;
background-repeat : repeat-x;
font-family : Verdana;
font:100.01%/1.4 sans-serif;
text-align:center; /* horizontal centering for IE Win quirks */
}
#distance {
width:1px;
height:50%;
background-color: transparent;
margin-bottom:-13.75em;
/* half of container's height */
float:left;
}
#container {
margin:0 auto;
position:relative;
/* puts container in front of distance */
text-align:left;
height:27.5em;
width:45em;
clear:left;
background-color: #FFF;
border:1px solid #000090;
border-top-color:#000090;
border-left-color:#000090;
}
#container div {
font-size:80%;
float:right;
width:37em;
margin-left:2em;
}
#container div h1 {
margin-left: -220px;
margin-top: 30px;
}
#container div h2 {
margin-left: -0px;
margin-top: 15px;
font-family : Tahoma;
font-size : 14px;
color : #000090;
}
#container div h3 {
margin-left: 190px;
margin-top: 55px;
font-family : Tahoma;
font-size : 9px;
color : #000090;
}
/* Navigation ANFANG */
#navlist
{
padding: 0 0px 1px;
margin-left:-320px;
margin-top: -120px;
font: bold 12px Verdana, sans-serif;
background-color: #FFFFFF;
width: 13em;
}
#navlist li
{
list-style: none;
margin: 0;
border-top: 0px;
text-align: left;
}
#navlist li a
{
display: block;
padding: .25em 5.0em 0.25em 1.75em;
border-left: 1em solid #FFFFFF;
background-color: #FFFFFF;
text-decoration: none;
}
#navlist li a:link { color: #000090; }
#navlist li a:visited {
color: #8A8AFF;
}
#navlist li a:hover
{
border-color: #000090;
color: Blue;
background-color: #FFF;
}
/* Navigation ENDE */
a:link {
color : #000090;
height : 12px;
width : 60px;
}
a:visited {
color : #8A8AFF;
height : 12px;
width : 60px;
}
a:hover {
color : Blue;
height : 12px;
width : 60px;
}
a:active {
color : #C60063;
height : 12px;
width : 60px;
}
</style>
<style type="text/css">@import("iemac-center.css");</style>
</head>
<body>
<div id="distance"></div>
<div id="container"><div>
<h1><img src="objekts/head.gif" width="472" height="147" alt="Horst Süss - Sachverständiger" border="0"></h1>
<h2>Willkommen auf unserer Homepage !<br><br>Wir freuen uns, dass Sie sich bei uns informieren möchten.<br><br>Sofern Sie Fragen haben, werden wir Ihnen diese stets<br>gerne beantworten.<br><br><a href="kontakt.php" target="_blank">Hier gelangen Sie zur unserer Kontaktseite</a></h2>
<h3>2007 - Made by: <a href="[URL="http://www.it-webdesign.net"]IT Webdesign Consulting, Webdesign, Webservice, Internetservice[/URL]" target="_blank">IT WebDesign CONSULTING ©</a></h3>
<div id="navcontainer">
<ul id="navlist">
<li><a href="../start.htm" target="_parent">Zur Firma Süss</a></li>
<li><a href="htm/leistung.htm" target="_parent">Leisungsumfang</a></li>
<li><a href="htm/anschrift.htm" target="_parent">Anschrift</a></li>
<li><a href="htm/kontakt.php" target="_blank">Kontakt</a></li>
<li><a href="mailto:[email protected]?subject=Info Allgemein">e-M@il</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
Die Links der Navigation funktionieren zwar, doch gehen sie noch in's Leere, da ich diese Seiten noch nicht auf den Server gelegt habe.
Hat jemand eine Idee oder Tip für mich?
Über eine Nachricht würde mich sehr freuen.
Jagognussel