I've searched all day and tried everything to remove the black around my PNGs when I use the Fadein jquery effect in internet explorer. I must be missing something because all the code I use doesn't fix it. My page can be visited here: http://www.kaimeramedia.com/derek/Website
I found this bit of code:
.item img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
/* IE8 */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
/* IE6 & 7 */
zoom: 1;
}
but I am unable to get it to work with my menu page ( http://www.kaimeramedia.com/derek/Website/menu.php) which only looks correct in the index.php template.
The images fade on and off fine in all browsers it just that IE 6+ puts a really thick black border around it. I know there are many sites that discuss this issue, but I haven't had any luck or at least I must be inputting the code wrong.
I tried editing CSS and the style tags below but it didn't seem to have any effect:
div.fadehover {
position: relative;
}
img.b {
position: absolute;
left: 0;
top: 0;
z-index: 10;
opacity: 0;
filter: alpha(opacity=0);
background: transparent;
}
.style2 { font-style: italic; color: #2D6773; }
.style3 { color: #122833 }
If someone could help me with a working solution to my site that would be really appreciated.
