how to make a hover description (asked by anon)
theres a bunch of different ways to do this trick but this is how i do it.
okay so first step is to format and place the description where you want it.
and if you want the desc. to appear under the sidebar when you hover the image. so on your description, add some padding to the top of it so that it covers the sidebar (make sure your desc doesnt have a background color)
so if my sidebar image is 100px then the desc padding-top should be about 100px or more.
next, under #description type this in:
Opacity:0;
and update preview, your desc will disappear but thats okay!
next, make this div element:
#description:hover {
opacity:1;
}
now when you hover your sidebar your desc. will appear! so your coding should look a little like this:
alacazam! if this is confusing pls tell me :)
















