- put this code into the style.css file -
.pic {filter: progid:DXImageTransform.Microsoft.Shadow(color=#404040,direction=135, strength=4)
progid:DXImageTransform.Microsoft.Alpha(opacity=100);
border: 0;}
- to adjust the color & darkness & direction of the shadow, change these settings : (color=#404040,direction=135, strength=4) & (opacity=100)
- then for the images you add this code -
class="pic"
- like here : <img src="{template_image_url}/category.gif" border="0" class="pic">
- or for a shadow on a table you add it like this:
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0" class="pic">
---- hope this helps you ------