thuemmy
Aktives Mitglied
Hallo Forum,
ich habe auf der Website Molitor Bedachungen GmbH - Eltville - Startseite im body-Selektor die font-size: 90%. Da mir die Überschriften noch etwas zu groß sind, habe ich mir überlegt, den h1 ..... h7 - Selektoren nochmal einen Prozentwert (geringfügig unter 100%) mitzugeben. Selbst bei 99% ist die Schrift der Überschrift unverhältnissmäßig klein. Wo liegt mein Problem?
Gruß thuemmy
	
	
	
		
				
			ich habe auf der Website Molitor Bedachungen GmbH - Eltville - Startseite im body-Selektor die font-size: 90%. Da mir die Überschriften noch etwas zu groß sind, habe ich mir überlegt, den h1 ..... h7 - Selektoren nochmal einen Prozentwert (geringfügig unter 100%) mitzugeben. Selbst bei 99% ist die Schrift der Überschrift unverhältnissmäßig klein. Wo liegt mein Problem?
Gruß thuemmy
		Code:
	
	body {
 background-image: url(../images/bg2.jpg);
 background-repeat: repeat;
 background-color: white;
 font-family: Verdana, Arial, sans-serif;
 font-size: 90%;
}
h1, h2, h3, h4, h5, h6, h7 {
 font-size:99%;
}
.main {
 width:720px;
 margin-left:auto;margin-right:auto;
 margin-top:15px;
 margin-bottom:15px;
 border-width:1px;
 border-style: solid;
 border-color: black;
 background-color: white;
}
#navsite h5 {
 display:none;
}
#navsite ul {
 padding: 3px 0;
 margin-left: 0;
 border-bottom: 1px solid #778;
 font: bold 12px Verdana, sans-serif;
}
#navsite ul li {
 list-style: none;
 margin: 0;
 display: inline;
}
#navsite ul li a {
 padding: 3px 0.5em;
 margin-left: 3px;
 border: 1px solid #778;
 border-bottom: none;
 background: #DDE;
 text-decoration: none;
}
#navsite ul li a:link {
 color: #448;
}
#navsite ul li a:visited {
 color: #667;
}
#navsite ul li a:link:hover, #navsite ul li a:visited:hover {
 color: #000;
 background: #AAE;
 border-color: #227;
}
#navsite ul li a#current {
 background: white;
 border-bottom: 1px solid white;
}
.content {
 width:700px;
 height:100%;
 margin-left:0px;
 margin-right:0px;
 margin-top:0px;
 margin-bottom:0px;
 background-color: white;
 padding:10px;
}