Page 1 of 1

Question about Shadow

PostPosted: Sun Jul 25, 2004 12:34 pm
by tivoli
Figured out a double frame with a ridge, very happy. Now, I'd like to put a shadow detail on the image, I guess around the entire frame, not the image. I cut/pasted the shadow text from elsewhere, but it is not working. What am I doing wrong? Thank you.

}
.display {
border: #666633 20px ridge;
background-color : #ffffff;
padding: 40px;
display : block;

progid:DXImageTransform.Microsoft.Shadow(color="#141414",Direction=135,Strength=5);
}

Shadow

PostPosted: Mon Jul 26, 2004 12:41 pm
by robert
Think you left out something...try this:

}
.display {
border: #666633 20px ridge;
background-color : #ffffff;
padding: 40px;
display : block;
filter:
progid:DXImageTransform.Microsoft.Shadow(color="#141414",Direction=135,Strength=5);
}

PostPosted: Mon Jul 26, 2004 7:43 pm
by tivoli
Oh, thank you so much, that worked!