I want to post a video on the middle of my home page and have pictures in the right corner in the same section. When someone puts there mouse cursor over the pictures, then I want the picture to display bigger + I want the text to appear below when each time the mouse cursor is over the picture. How do I do that? Please help.
This would most likely need to be done in flash so unless you are good with flash you may need to hire a flash designer.
I think, if i'm understanding it right, you could set the a tag to display different background images on hover. for example in your css a {background:url(images/image1.jpg) top left no-repeat; display:block; width:200px; height:200px;} a:hover {background:url(images/image1bigger.jpg) top left no-repeat; display:block; width:300px; height:300px} Code (markup): do you have a site url etc so i can see exactly what you mean?