hola
i figured out how to make an image appear next to a link when hovering by displaying it as a block and then using background:url
div.menu a{
display:block;
}
div.menu a:hover{
background:url( images/menuhover.gif) left no-repeat;
}
(ps here is a link if you want to see it in action . . . )
now what i would like to do is to have a series of thumbnails on the edge of the page and use the hover property to display an image in the center of the page, which will change as i hover over the various thumbnails.
i said i would LIKE . . . is this possible??
i figured out how to make an image appear next to a link when hovering by displaying it as a block and then using background:url
div.menu a{
display:block;
}
div.menu a:hover{
background:url( images/menuhover.gif) left no-repeat;
}
(ps here is a link if you want to see it in action . . . )
now what i would like to do is to have a series of thumbnails on the edge of the page and use the hover property to display an image in the center of the page, which will change as i hover over the various thumbnails.
i said i would LIKE . . . is this possible??
Comment