Hallo ich hab mal wieder ein Problem mit der Definition.
mein HTML
Mein CSS vom div MENU und div LINKS
Jetzt warum werden im Menu die Links auch unterstrichen?! ist doch angegeben wo es Unterstrichen sein soll und wo nicht. Was ist das Problem?
Greez
mein HTML
HTML:
<div id="menu">
<!-- Editierbare Links in "ul" einbinden -->
<?php
require "menu.php";
?>
<!-- Editierbare Links in "ul" einbinden ende -->
</div>
<div id="content">
<div id="contenttext">
<!-- Editierbarer Text -->
<div id="links"><a href="cart.php">Zum Warenkorb</a> <a href="admin/index.php">Admin Login</a></div><br />
Mein CSS vom div MENU und div LINKS
HTML:
div#menu{
background-image: url(../bilder/menu.gif);
background-repeat: no-repeat;
width: 874px;
height: 29px;
margin: auto;
margin-top: 9px;
}
div#menu ul{
padding-top: 8px;
padding-left: 175px;
}
div#menu li{
font-family: Verdana;
font-size: 12px;
color: #1e1e1e;
list-style-type: none;
float: left;
padding-left: 20px;
}
div#menu li a:link, a:visited, a:active{
font-family: Verdana;
font-size: 12px;
text-decoration: none;
color: #1e1e1e;
}
div#menu li a:hover{
font-family: Verdana;
font-size: 12px;
text-decoration: none;
color: #535353;
}
div#links{
float: left;
text-align: left;
color: black;
}
div#links a:link, a:visited, a:active{
color: black;
text-decoration:underline
}
Jetzt warum werden im Menu die Links auch unterstrichen?! ist doch angegeben wo es Unterstrichen sein soll und wo nicht. Was ist das Problem?
Greez