Beispiel 3 stufiges Layout mit Tabelle und include :
[HTML]<table><tr><td colspan="2"><?php include ('head.php');?></tr></td><tr><td><?php include ('navi.php');?></td><td><?php include ('main.php');?></td></tr></table>[/HTML]
hover (in der css datei z.B.) :
[HTML]a:hover {
color: #FFA500;
font-weight: bold;
font-size: 12px;
border-style: outset;
width: 140px;
height: 40px;
border-color: Yellow;
font-family: "Comic Sans MS";
background-image: url(Bilder/hover.jpg); }[/HTML]
Ich geh aber davon aus das du ein mouseover effekt erzeugen willst der nicht für jeden button gleich ist also musst du eine class vergeben z.B.
[HTML].button1 a:hover {
color: #FFA500;
font-weight: bold;
font-size: 12px;
border-style: outset;
width: 140px;
height: 40px;
border-color: Yellow;
font-family: "Comic Sans MS";
background-image: url(Bilder/hover.jpg); }[/HTML]
und der dazugehörende link :
[HTML]<a href="xxx.php" class="button1" >dein link</a>[/HTML]
LG
Kylee
[HTML]<table><tr><td colspan="2"><?php include ('head.php');?></tr></td><tr><td><?php include ('navi.php');?></td><td><?php include ('main.php');?></td></tr></table>[/HTML]
hover (in der css datei z.B.) :
[HTML]a:hover {
color: #FFA500;
font-weight: bold;
font-size: 12px;
border-style: outset;
width: 140px;
height: 40px;
border-color: Yellow;
font-family: "Comic Sans MS";
background-image: url(Bilder/hover.jpg); }[/HTML]
Ich geh aber davon aus das du ein mouseover effekt erzeugen willst der nicht für jeden button gleich ist also musst du eine class vergeben z.B.
[HTML].button1 a:hover {
color: #FFA500;
font-weight: bold;
font-size: 12px;
border-style: outset;
width: 140px;
height: 40px;
border-color: Yellow;
font-family: "Comic Sans MS";
background-image: url(Bilder/hover.jpg); }[/HTML]
und der dazugehörende link :
[HTML]<a href="xxx.php" class="button1" >dein link</a>[/HTML]
LG
Kylee