Hallo Jungz,
habe ein großes Problem! Ich will gerne ein CSS Menü machen!
Das wenn man über den Link geht soll der Bold werden also mit a:hover würde ich mal sagen. und der erste Link soll aktiv sein, also underline! Und das wenn man auf z.B. link2 klick der link aktiv sein soll (underline) und der erste inaktiv, also normal, und ich würde das ganze gern mit javascript machen, obwohl ich kaum ahnung habe.
mein Script sieht so aus aber irgendwie klappt da gar nix:
CSS Datei:
Danke im Vorraus
habe ein großes Problem! Ich will gerne ein CSS Menü machen!
Das wenn man über den Link geht soll der Bold werden also mit a:hover würde ich mal sagen. und der erste Link soll aktiv sein, also underline! Und das wenn man auf z.B. link2 klick der link aktiv sein soll (underline) und der erste inaktiv, also normal, und ich würde das ganze gern mit javascript machen, obwohl ich kaum ahnung habe.
mein Script sieht so aus aber irgendwie klappt da gar nix:
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="navi.css" rel="stylesheet" type="text/css">
</head>
<script language="JavaScript" type="text/JavaScript">
function setStartActive(){
document.getElementsByTagName("a")[0].style.fontDecoration="underline";
}
function setActive (linka) {
links = document.getElementsByTagName("a");
for (var i = 0;i<links.length;i++)
links[i].style.color="gray";
linka.style.fontDecoration="underline";
}
</script>
<body onLoad="setStartActive()">
Rc-race-shop<br>
<a href="18.htm" target="content" class="normal" setActive(this)>1:8</a><br>
<a href="110.htm" target="content" class="normal" setActive(this)>1:10</a></span>
</body>
</html>
CSS Datei:
PHP:
/* CSS Document */
.normal { color:#999999; text-decoration:none}
a.activ { color: #999999; font-size: 1.3em; font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular; text-decoration: underline;}
a.hover {color: #999999; font-size: 1.3em; font-family: Arial, Helvetica, sans-serif; text-decoration: none; font-weight: bolder;}
Danke im Vorraus