Only happens in IE. Those artifacts can be eliminated by skillful manipulation of the black level in a decent image editing program like The Gimp, Paint Shop Pro or Photoshop. I use Paint Shop Pro. In that you choose:
colors > adjust > levels
Then you can change the input level of 0 to an output level of - say 9, it varies but is usually just a few points difference. You cannot see the results of your efforts until you view the image in IE in a script (like this one) that filters it.
However, I also noticed that with this particular script on your particular page that changing the css background-color value for the thumbImage selector to black seemed to work. In thumbnailviewer.css (addition red):
Code:
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 10px;
padding-bottom: 0;
background: #313131;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;
}
#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
font: bold 16px Tahoma;
letter-spacing: 5px;
line-height: 1.1em;
color: white;
padding: 5px 0;
text-align: right;
}
#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
background-color: white;
}
#thumbImage {
background-color: black;
}
#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
position: absolute;
visibility: hidden;
border: 1px solid black;
background-color: #EFEFEF;
padding: 5px;
z-index: 5;
}
Bookmarks