Tue, 2010-08-24 16:38
I'm working on a project where I'm creating a profile site for a group of seed cleaning plants. I have links to each plant on one side and would like there to be roll over images for each of them showing their location. I'm at a complete lost as to what to try. I'm still a newbie when is comes to CSS.
Tue, 2010-08-24 21:43
#1
This is not really a css
This is not really a css thing, more like javascript. Never fear though it can be done through css but it's a bit complex. Are you familiar with sprites, anchors, and hovers in css?
Tue, 2010-08-24 21:47
#2
Try something like this
<ul> <li><a href="#">Text<span><img src="" alt="" /></span></a></li> </ul> li { position: relative } li span { position: absolute; right: -100px; top: 0; display: none } li a:hover span { display: block }
Wed, 2010-08-25 06:43
#3
I like these type of
I like these type of non-javascript solutions to common javascript usage. neat 



