Default shadow border IMG


Author Message
Cees

Posted: 5/27/2011
Quote message 

If you would like a nice default shadow border in pictures

IN STYLE CSS line 1930

REPLACE:
.art-article img, img.art-article, .art-block img, .art-footer img
{
border: solid 0 #C4C4C4;
margin: 0;
}

WITH
.art-article img, img.art-article, .art-block img, .art-footer img
{
border: solid 0 #C4C4C4;
margin: 0;
-moz-box-shadow: 3px 3px 4px #000;
-webkit-box-shadow: 3px 3px 4px #000;
box-shadow: 3px 3px 4px #000;
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}