CSS Problems

Daniel newyouth

Angesehenes Mitglied
Hallo,

Habe ein dringendes CSS Problem.
Ich benutze folgendes CSS:

CODE A:link {
color:#000099;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 12pt;
}
A:visited {
color:#000099;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 12pt;
}
A:active {
color:#000099;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 12pt;
}
A:hover {
color:#1054E6;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 12pt;
}
A.menue:link {
color:#808080;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 8pt;
}
A.menue:visited {
color:#808080;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 8pt;
}
A.menue:active {
color:#808080;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 8pt;
}
A.menue:hover {
color:#FF0000;
text-decoration:none;
font-family:Arial,sans-serif;
font-size: 8pt;
}


Es gibt 2 Linkstyles:
<a href="index.php">
und
<a class="menuew" href="onlinegames_sport.php">

Problem ist jetzt:
<a class="menuew" href="onlinegames_sport.php"> nimmt leider nicht seinen Tag ein, sondern wird blau und 12pt groß.

Danke!
 
soweit ich weis hebt eins das ander auf du müßtest eins als menü definieren und eins als Navigation
so machs ich jedenfalls immer wen die menüs verschieden aussehen sollen

mache gerade ebnsolches

CODE #navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
float:left;
padding:2px;
margin:0px 2px 2px 0px;


}

#navcontainer li { margin: 0 0 3px 0; }

#navcontainer a
{
display: block;
padding: 1px 1px 1px 10px;
border: 1px solid #333;
width: 100px;
background-color: #999;

}

#navcontainer a:link, #navlist a:visited
{
color: #303;
text-decoration: none;
}

#navcontainer a:hover
{
border: 1px solid #333;
background-color: #F60;
color: #333;
}

#active a:link, #active a:visited, #active a:hover
{
border: 1px solid #333;
background-color: #FF6600;
color: #333;






CODE <div id="navcontainer">
<ul id="navlist">

<li id="active"><a href="http://www.cash-index.com" id="current">DE</a></li>
<li><a href="http://www.cash-index.com/affiliate_cash.html"> EN</a></li>

</ul>



</div>


villeicht passt das
 
QUOTE (Urs @ Do 6.1.2005, 16:03) css menue
link class="menuew"

Oh Daran lag es.
Besten Dank.

ph34r.gif
 
Zurück
Oben