Hello.
I am using this coding for a drop-shadow (thanks to whomever originally posted it out there)
<style type="text/css">
.shadowblur{
box-shadow: 7px 7px 8px #C0C0C0;
-webkit-box-shadow: 7px 7px 8px #C0C0C0;
-moz-box-shadow: 7px 7px 8px #C0C0C0;
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#C0C0C0, offX=7, offY=7, positive=true); }
<div class="shadowblur" style="width:600pt; height:450pt; padding:5px; background:white; border: 1px solid white;">
Current, it shadows on the bottom and right side.
How can I change it around to shadow on the bottom and left sides?
-DH