creative "more info" idea or fix to my current idea im using
Popup menu on image mouseover (I need image to disappear though)
or another pop up/"additional info" idea
here's the code I'm using...
I had it all settled, everything good, my popup menu perfect spot
then i open stupid internet explorer and the button im mousing over, shows ABOVE the menu (its actually just information, not even a menu with links)
aciddr0p.net/mgpcrepair has what i mean. the "more" buttons.
heres the code below that im using
thanks everyone
http://www.dynamicdrive.com/style/cs...ge-viewer/P60/
full code is foudn there, the comments also mention some "fixes" for it, id appreciate any input on those fixes if you dont mind. thanks a lot.
[code]
<style type="text/css">
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #EFEFEF;
padding: 5px;
left: -1000px;
border: 1px dotted black;
visibility: hidden;ww
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -250px;
left: 0px; /*position where enlarged image should offset horizontally */
}
</style>