Hi,
ich wollte den durchs Menü angezeigten Content meiner Webseite in ein Frameset aufteilen. Nun habe ich aber alle Varianten durch und kann den Fehler nicht finden, warum ich mein Frameset nicht sehe. Hoffe ihr könnt helfen.
CSS:
HTML:
Frameset1 (startseite.htm):
Frameset2 (verweise.htm):
Ich weiss nicht ob es vl am Doctype liegt oder irgendeiner fehlenden Definition Die Links sind eigtl richtig gesetzt. Habe es auch mit dem Doctype <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ausprobiert.
ich wollte den durchs Menü angezeigten Content meiner Webseite in ein Frameset aufteilen. Nun habe ich aber alle Varianten durch und kann den Fehler nicht finden, warum ich mein Frameset nicht sehe. Hoffe ihr könnt helfen.
CSS:
Code:
@charset "utf-8";
/* CSS Document */
* {
margin: 0;
padding: 0;
}
body {
background: url(images/background.png) repeat-x center top;
height:600px;
width:1300px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
#menu {
background: url(images/menue.png) no-repeat center top;
list-style-type:none;
width:1300px;
height:63px;
margin:auto;
}
#menu ul {
margin-left:382px;
}
#menu li {
float:left;
display: block;
margin-left:22px;
margin-right:-22px;
}
#menu a {
display: block;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: #000000;
border: none;
width:246px;
height:63px;
}
#menu p{
padding:23px 0px 25px 100px;
}
#menu a.verw1:hover {
background: url(images/leftbuttonpressed.png) no-repeat center top;
color: #FFFFFF;
}
#menu a.verw2:hover {
background: url(images/rightbuttonpressed.png) no-repeat center top;
color: #FFFFFF;
}
#content{
margin-top:105px;
color: #FFFFFF;
}
#content p{
padding:25px 25px 0px 25px;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
}
#blackbox{
background-color:#000;
height:472px;
}
#greybox{
background-color:#201E22;
height:472px;
}
#bodyextended{
background-color:#662D2D;
}
HTML:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<title>Untitled Document</title>
<link href="MyStyle.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="menu">
<ul>
<li><a class="verw1" href="about.html"><p>About</p></a></li>
<li><a class="verw2" href="projects.html"><p>Projects</p></a></li>
</ul>
</div>
<div id="content">
<frameset cols="250,*">
<frame src="verweise.htm" name="Navigation">
<frame src="startseite.htm" name="Daten">
</frameset>
</div>
</body>
</html>
Frameset1 (startseite.htm):
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Navigation</title>
</head>
<body bgcolor="#E0C0FF" text="#000000" link="#804080" vlink="#603060" alink="#804080">
<h1>Navigation</h1>
<p>
<a href="../index.htm" target="Daten"><b>Über Frames</b></a><br>
<a href="../../index.htm" target="Daten"><b>Über HTML</b></a><br>
<a href="../../../index.htm" target="Daten"><b>Noch viel mehr</b></a>
</p>
</body>
</html>
Frameset2 (verweise.htm):
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Startseite</title>
</head>
<body bgcolor="#FFF0C0" text="#000000" link="#A00000" vlink="#600000" alink="#A00000">
<h1>Willkommen</h1>
<p>Wählen Sie links einen Verweis aus!</p>
</body>
</html>
Ich weiss nicht ob es vl am Doctype liegt oder irgendeiner fehlenden Definition Die Links sind eigtl richtig gesetzt. Habe es auch mit dem Doctype <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ausprobiert.