Jeg mener nok at css koderne skal stå i rækkefølgen
a
a:hover
a:active
Så du skal bytte rundt på din menulodret:hover og menulodret:active
Det har desværre ingen effekt. :-/
Sådan ser koden ud for menuen:
<body>
<div class="cssmenulodret">
<a href="index.php">Forside<br></a>
<a href="chantal.php">Vores katte<br></a>
<a href="galleri_chantal.php">Galleri<br></a>
<a href="udstilling.php">Udstilling<br></a>
<a href="aktivering.php">Adfærd<br></a>
<a href="foder.php">Pasning & Pleje<br></a>
<a href="alarm.php">Værd at vide<br></a>
<a href="have.php">Udendørs liv<br></a>
<a href="britishshorthair.php">British Shorthair<br></a>
<a href="nukuld.php">Killinger</a>
<a href="brite.php">Tidligere katte<br></a>
<a href="kontakt.php">Kontakt<br></a>
<a href="gaestebog.php">Gæstebog<br></a>
<br>
<a href="http://www.kongensgaard.dk/gb_index.php" target="_top">English Version</a>
</div>
</body>
Og jeg har nu prøvet følgende i min CSS fil:
div.cssmenulodret a {
font-style: normal;
font-family: verdana, arial, sans-serif;
line-height: 2.2em;
text-align: center;
display:block;
margin:0;
margin-bottom:0spx;
padding-left:0px;
width:105px;
height:15px;
font-size: 66%;
font-weight:bold;
color:white;
background:#627957;
border:3px outset #81947A;
text-decoration:none;
}
div.cssmenulodret a:hover {
font-style: normal;
font-family: verdana, arial, sans-serif;
line-height: 2.2em;
text-align: center;
background-color:transparent;
font-weight:bold;
text-decoration:none;
border-style:inset;
font-size: 66%;
}
div.cssmenulodret a:active {
font-style: normal;
font-family: verdana, arial, sans-serif;
line-height: 2.2em;
text-align: center;
display:block;
margin:0;
margin-bottom:0spx;
padding-left:0px;
width:105px;
height:15px;
font-size: 66%;
font-weight:bold;
color:white important;
background-color:red;
border:3px outset #81947A;
text-decoration:none;
}
div.cssmenulodret a:link,
div.cssmenulodret a:visited, {
font-style: normal;
font-family: verdana, arial, sans-serif;
line-height: 2.2em;
text-align: center;
display:block;
margin:0;
margin-bottom:0spx;
padding-left:0px;
width:105px;
height:15px;
font-size: 66%;
font-weight:bold;
color:white important;
background-color:blue;
border:3px outset #81947A;
text-decoration:none;
}