Hi, nice theme.
In Explorer 8 the background and the box-shadow disappear:
background: url("images/body.png") no-repeat fixed center top #EEEEEE
box-shadow:0 0 5px rgba(0, 0, 0, 0.3)
I check in three computers:
Two with Windows XP + Explorer 8 = it fails
One with Windows 7 + Explorer 9 = it's ok.

Comments

devsaran’s picture

Status: Active » Closed (works as designed)

Internet Explorer doesnt support the box-shadow, some of the background and box radius.. So I didnt take IE to the consideration..

devsaran’s picture

Version: 7.x-1.1 » 7.x-1.2
Status: Closed (works as designed) » Closed (fixed)

Thank you for the bug finding in the Internet Explorer.. I fixed the Background Issue in the 7.x-1.2 version.. Please check it out the 7.x-1.2.

Rafael Cansinos’s picture

I reported this because in your Readme.txt you writte: "Compatible and tested on IE7, IE8, IE9+, Opera, Firefox, Chrome browsers"

--- background ---

The problem of the background is just one space

background:#eee url(images/body.png) no-repeat fixed center top;

instead of:

background:#eee url(images/body.png)no-repeat fixed center top;

and it works in IE8

--- box-shadow ---

IE9 has no problem showing box-shadow. For IE 5.5-8:

.inwrap{
background:#fff;
-moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3);
-webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3);
box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3);
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999');
}
--- --- ---
Checked in Firefox 12, Safari 5.1.5, IE8 & IE9
Regards.

devsaran’s picture

Wow.. Awesome.. Once again, Thanks Rafael.

Thanks for the Fix..

Sorry for the 1st Comment..