I am facing an issue with displaying 2 images in IE8 and IE9. Below is the code snippet causing the problem:
.ui-widget-content {
border: 0px solid #aaaaaa/*{borderColorContent}*/;
background: rgba(0, 0, 0, 0.1) ; /*{bgColorContent}*/ url(images/scroll.png)/*{bgImgUrlContent*/ 0/*{bgContentXPos}*/ 0/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/;
color: #222222/*{fcContent}*/;
border-top: solid 1px #FF0000;
}
.ui-widget-content a {
color: #222222/*{fcContent}*/;
}
The line "background: rgba(0, 0, 0, 0.1);" works fine in IE9 but causes issues in IE8. Can anyone help me fix this problem?