On your webpage I've discovered a nice tooltip script:
http://www.dynamicdrive.com/dynamici...agetooltip.htm
I have some pictures to display. The pictures should pop-up at the far right of the browser window.
I changed the CSS script as follow:
.ddimgtooltip{
box-shadow: 3px 3px 5px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 3px 3px 5px #818181;
-moz-box-shadow: 3px 3px 5px #818181;
display:none;
position:absolute;
right:10px;
top:50px;
border:1px solid black;
background:white;
color: black;
z-index:2000;
padding: 4px;
}
where I've added right:10px; top:50px;
The pop-up picture is still positioned near the link and not 10px from the right corner of the browser window.
Any suggestions?



Reply With Quote


Bookmarks