This simple tip will allow you to add those cool table hover effects on your board and topics index, just like in this very forum. But with a little extra thing, like adding an image as well to it.
Add the following code to the css file of your theme, all the way to the bottom:
.windowbg:hover {
background: #C0C0C0 url(images/name of image) no-repeat right;
}
.windowbg2:hover {
background: #C0C0C0 url(images/name of image) no-repeat right;
}
Upload your image to the /images/ folder of your theme and replace the name of the image with the correct name of your image at the code above. If you don''t want to display an image, but only the table hover effects, then take out the url part at the above code. You can also change the color to whatever color you want.
That was it.