Thu, 2014-01-30 15:56
Hi. I wonder if anybody could help me.
This is the situation now.
But..
I want to have a image appearing underneath the menu when definite link is hovered. For each menu item different image.
Something like this.
What kind of code lines would do that for me ?
Thanks for help.
Fri, 2014-01-31 00:23
#1
Hi atchef, There's a few ways
Hi atchef,
There's a few ways you could do this, here is one.
<a href="">Link #1 <img src="link1img.png" /></a>
a{ position:relative; } a img{ display:none; position:absolute; top:0; left:0; } a:hover img{ display:inline-block; }
It will need fine tuning.
Fri, 2014-01-31 07:07
#2
awesome. Thank you. It works
awesome. Thank you. It works perfectly.