"How do I show my pictures when you mouse over the link ?"
You might try this method, but the second you mouseout they disappear:
http://www.meyerweb.com/eric/css/edge/popups/demo2.html
__
css-discuss [EMAIL PROTECTED]
http://w
Thanks alot FOR ALL your help.Now just to find the time to fix this.
working 7 day a week
13 - 14 hrs doesn`t give me much time anymore.
Tahnks again
On 6/7/05, Christian Heilmann <[EMAIL PROTECTED]> wrote:
> Hi Steve,
>
>
Hi Steve,
> 1. How do I show my pictures when you mouse over the link ?
> page : http://homepage.mac.com/n00dles/pics.html
You _could_ show the pictures via CSS by adding them in the link:
foo
and then hiding and showing them on hover:
a img{
display:none
}
a:hover img{
display:block;
}
Howev
1. How do I show my pictures when you mouse over the link ?
page : http://homepage.mac.com/n00dles/pics.html
2. I`m also having a problem floating 2 image. 1 float left and the
other float is on the right ?
page : http://homepage.mac.com/n00dles/index.html
_