I'm developing a hosted HTML application for windows MCE 2005 using AJAX and .NET 2.0. Till a few days ago i have been using some simple themes., but now i've created a new theme that uses png images with transparencies. It all works and looks good in IE 6.0 and 7.0 but under MCE all that beautifull "glassy" look is lost.
Here is an exemple of my button class in my CSS:
.menuBtn
{
behavior:url(Hilite.htc);
filter

rogid

XImageTransform.Microsoft.ALphaImag eLoader(src='images/icons_glass/button.png', sizingMethod='scale');
height: 50px;
width: 260px;
color: white;
cursor: hand;
padding: 5 5 5 5;
}
.menuBtn_hilite
{
behavior:url(Hilite.htc);
filter

rogid

XImageTransform.Microsoft.ALphaImag eLoader(src='images/icons_glass/button_hilite.png', sizingMethod='scale');
height: 50px;
width: 260px;
color: white;
cursor: hand;
padding: 5 5 5 5;
}
This works fine on both IE 6 and 7.
Am I doing something wrong? Can anyone help me?
Cheers
Edu