Hello all,
I am not sure if this is the right place to put this, but I am working on a template that uses png images for navigation icons.
The backgrounds are set to transparent. All works fine in Chrome. When I view it in Internet Explorer my images look thicker/bolder and messy. How can this be fixed?
Sorry I cannot link to a webpage as I am designing this on my localhost.
*********************************************SOLVED*********************************************
After looking around I found a solution.
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE8 */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); /* IE6 & 7 */
I thought I would share it in case someone comes across my question and needs an answer.