Hoi, weet iemand of het ook mogelijk is om na aanklikken van een button het mouse over plaatje te laten staan bij die pagina die aangeklikt is?
Hier een link naar testsite http://www.thermografie-centrum.nl/test-site/testpagina.html
Dit is de css
en dit de XHTML
Hier een link naar testsite http://www.thermografie-centrum.nl/test-site/testpagina.html
Dit is de css
Code:
#navlist{
margin-left: 0px;
padding-left: 0px;
white-space: nowrap;
position: absolute;
height: 27px;
width: 975px;
top: 143px;
}
#navlist li{
display: inline;
list-style-type: none;
}
#navlist a {
padding: 3px 10px;
height: 20px;
width: 93px;
display: inline;
position: absolute;
text-align: center;
color: #ffffff;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
}
#navlist a:hover{background-image: url(images/buttonover.gif);}
#n1{left: 0px;}
#n2{left: 116px;}
#n3{left: 232px;}
#n4{left: 348px;}
#n5{left: 464px;}
#n6{left: 580px;}
#n7{left: 696px;}
#n8{left: 812px;}
en dit de XHTML
HTML:
<ul id="navlist">
<li><a id="n1" href="testpagina.html">home</a></li>
<li><a id="n2" href="test.html">button2</a></li>
<li><a id="n3" href="test.html">button3</a></li>
<li><a id="n4" href="test.html">button4</a></li>
<li><a id="n5" href="test.html">button5</a></li>
<li><a id="n6" href="test.html">button6</a></li>
<li><a id="n7" href="test.html">button7</a></li>
<li><a id="n8" href="test.html">button8</a></li>
</ul>