Hallo erstmal,
ich bin neu in diesem Forum, und wollte euch mein Problem darlegen.
Aber zuerst ein paar details zu mir:
Ich bin 19 Jahre alt, habe keine große Erfahrung mit Css und Html, aber jeder muss ja mal iw damit beginnen;-)
Aktuell Besuche ich eine Staatliche Oberschule in Bayern und wollte mir deswegen in den Ferien mal Html und css in den Basics beibringen.
Dabei bin ich aber auf ein Problem gestoßen: Die Seite an sich Funktioniert, aber sie baut sich immer wieder anders auf, mal wirkt sie etwas größer und mal so wie sie sein soll. Ich hab alles Probiert, hab das Internet durchforstet aber nichts gefunden, um dieses Problem zu lösen.
Als Browser Benutze ich Firefox.
Ich hoffe mir können ein paar erfahrenen User helfen mein Problem zu lösen.
Ich hänge zwei .gif Bilder an, die zeigen sollen wie die website verschieden aussieht. Ausserdem den html und css code.
Anhang 1 ist der wie es oft aussieht und Anhang 2 wie es aussehen soll.
Der Html Code:
<!doctype html>
<html lang=''>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/design.css">
<title>Pythonic.ddns.net</title>
</head>
<body>
<div id="website">
<div id='cssmenu'>
<ul>
<li><a href='index.html'>Home</a></li>
<li><a href='#'>News</a></li>
<li class='active'><a href='#'>Tutorials...</a>
<ul>
<li><a href='#'>Arduino</a>
</li>
<li><a href='#'>Raspberry Pi</a>
</li>
</ul>
</li>
<li class='active'><a href='#'>Sonstiges...</a>
<ul>
<li><a href='#'>Kruschkiste</a>
</li>
</ul>
</li>
<li><a href='#'>Downloads...</a>
<ul>
<li><a href='#'>Sourcecode</a>
</li>
<li><a href='#'>Anderes</a>
</li>
</ul>
</li>
<li><a href='#'>Kontakt</a></li>
</ul>
</div>
<div id="header">
</div>
<div id="inhalt>">
<div id="text">
</div>
</div>
<div id="footer">
</div>
</div>
</body>
<html>
[/code]
Und Hier der Css Code:
body {
background-color:gainsboro;
text-align:center;
}
#website {
width:980;
margin:0 auto;
}
#header {
width:980;
height:200px;
background:dimgray;
}
#menu_css {
width:980;
margin-top:10;
}
#inhalt{
margin-top:10;
width:980;
}
#sidebar_l {
float:left;
width:250px;
height:500;
background:dimgray;
-moz-border-radius:10px;
-webkit-border-radius:10px;
-o-border-radius:10px;
border-radius:10px;
margin-top:10px;
margin-bottom:10px;
}
#text {
text-align: justify;
float:right;
width:980px;
height:500px;
background:silver;
-moz-border-radius:0px;
-webkit-border-radius:0px;
-o-border-radius:0px;
border-radius:0px;
margin-top:10px;
margin-bottom:10px;
}
#footer {
width:980px;
height:40px;
background:dimgray;
-moz-border-radius:10px;
-webkit-border-radius:10px;
-o-border-radius:10px;
border-radius:10px;
margin-top:10px;
margin-left: auto;
margin-right: auto;
clear:both;
}
Alles anzeigen
Es gibt noch eine weitere css Datei, die aber nur das Menü händelt, falls dieser Code gebraucht wird, werde ich ihn umgehend nachliefern.
Ich bedanke mich fürs lesen und eventuellem Antworten.
Mit freundlichen Grüßen
BerryBlue