What I want is that the board color (windowbg) changes when the mouse is over that board en turns to the original color when the Mouse is out that board.
Maybe it has to do something with the code below, but problem is that I don't know where to put it.
onMouseOver="this.style.backgroundColor=\'#FFFCF9\'" onMouseOut="this.style.backgroundColor=\'#F6F6F6\'" >
You could just add this to your style sheet:.windowbg:hover {
background: #FFFCF9;
}
I think that would work.
It worked .. Thanks. ;)