Hi Leute,
vielleicht könnt ihr mir mal wieder helfen.
Komischerweise werden die Links in <div id="footer"> in der Farbe des in p.quote Links gezeigt und :hover funktioniert auch nicht mehr. Hat bis vor wenigen Minuten noch geklappt, irgendwas ist jetzt falsch, aber ich versteh beim besten Willen nicht, warum das jetzt nimmer geht.
Hier ist der Code zum Probelm:
Danke für eure Hilfe!
vielleicht könnt ihr mir mal wieder helfen.
Komischerweise werden die Links in <div id="footer"> in der Farbe des in p.quote Links gezeigt und :hover funktioniert auch nicht mehr. Hat bis vor wenigen Minuten noch geklappt, irgendwas ist jetzt falsch, aber ich versteh beim besten Willen nicht, warum das jetzt nimmer geht.
Hier ist der Code zum Probelm:
Danke für eure Hilfe!
Code:
<body>
<div id="navi-bg"></div>
<div id="wrap">
<div id="header"><a href="index.html"><img src="images/header.png"></a></div>
<ul id="navi">
<li><a href="about.html"><img src="images/about.png" id="about" onmouseover="MM_swapImage('about','','images/hover/about.png',1)" onmouseout="MM_swapImgRestore()"></a></li>
<li><a href="references.html"><img src="images/ref.png" id="ref" onmouseover="MM_swapImage('ref','','images/hover/ref.png',1)" onmouseout="MM_swapImgRestore()"></a></li>
<li><a href="tutorials.html"><img src="images/tutorials.png" id="tutorials" onmouseover="MM_swapImage('tutorials','','images/hover/tutorials.png',1)" onmouseout="MM_swapImgRestore()"></a></li>
<li><a href="blog.html"><img src="images/blog.png" id="blog" onmouseover="MM_swapImage('blog','','images/hover/blog.png',1)" onmouseout="MM_swapImgRestore()"></a></li>
<li><a href="contact.html"><img src="images/contact.png" id="contact" onmouseover="MM_swapImage('contact','','images/hover/contact.png',1)" onmouseout="MM_swapImgRestore()"></a></li>
</ul>
<div id="background">
<div id="content">
<h1>Welcome to my Portfolio-Website!</h1>
<p>Lorem ipsum dolor sit amet</p>
<p class="quote">«Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet <a href="http://www.gidf.de/lorem+ipsum">Lorem ipsum</a> dolor sit amet»</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.</p>
</div><!-- /content -->
<br class="clear" />
</div><!-- /background -->
<div id="footer">
<p>© 2011, David Kaiser · <a href="imprint.html">imprint</a> · <a href="friends.html">friends</a></p>
</div>
</div><!-- /wrap -->
</body>
Code:
body {font-family:helvetica neue, helvetica, arial, sans-serif;}
a, a:active, a:visited {border-style:none; text-decoration:none; color:#555555;}
a:hover {text-decoration:none; color:#cc8500;}
p {font-size:0.8em; color:#555555; line-height:1.6em;}
p .quote {font-family:georgia, serif; font-style:italic; color:#909090;}
p.quote a, a:active, a:visited {color:#909090;}
p.quote a:hover {color:#cc8500;}
h1,h2,h3,h4,h5,h6 {font-family:georgia, serif; font-style:italic; font-size:1.3em; color:#cc8500; font-weight:normal; letter-spacing:0.03em;}
#wrap {position:relative; top:20px; width:900px; margin:auto;}
#header {position:relative; display:block; margin:auto; width:168px;}
#navi-bg {position:absolute; width:100%; height:40px; left:0px; top:70px;}
ul#navi {position:relative; margin:auto; top:10px; width:506px; height:50px;}
ul#navi li {list-style:none; float:left; padding:0;}
#background {position:relative; top:10px; left:100px; width:700px; min-height:400px; -moz-border-radius:15px; -khtml-border-radius:15px;}
#content {position:relative; left:20px; top:10px; padding-top:0.1px; width:660px;}
#content p {position:relative; top:-5px;}
#footer p {position:relative; top:5px; text-align:center; font-size:0.7em; font-style:italic;}
.clear {clear:both;}