
Drop Shadow Variables
-
- Advanced
- Posts: 14
- Joined: Wed May 21, 2003 11:20 pm
Drop Shadow Variables
I know this may seem trivial to some, but we designers can be anal about these things: are Strength, Direction & Colour the only 3 variables you can control for the drop shadow? I would like to achieve an offset of 0 for the shadow, so that it will show up around all sides of the menu. I tried throwing in "Offset=0" into the code with no success
Does anyone know a way? Thanks for any help.

I like text shadow that only works in Safari;)
Anyhow, can you use text=<style=color:#ffffff;>TEST</style>;
Anything that can be done is css. Like onclass="cssstylename" and offclass.
offset is used to position a menu like top="offset=3"; left="offset=3";
If you can do it in css you can make it work.
maz
Anyhow, can you use text=<style=color:#ffffff;>TEST</style>;
Anything that can be done is css. Like onclass="cssstylename" and offclass.
offset is used to position a menu like top="offset=3"; left="offset=3";
If you can do it in css you can make it work.
maz
See http://msdn.microsoft.com/library/defau ... ilters.asp at the bottom of the page for more info on the filters.
John
-
- Advanced
- Posts: 14
- Joined: Wed May 21, 2003 11:20 pm
I played around with shadow and dropshadow used together and setting the direction or offsets in combination will give you a menu having borders around it [well, I didn't do indepth so it's only 3 sides, but you can play with direction and offX offY and get what you want, I believe]
At the Filters and Transitions reference John gave it talks of using more than one together.
Ruth
Code: Select all
overfilter="shadow(color=#CC00CC, direction=225, strength=2);dropshadow(OffX=1, OffY=1, Color=#CC00CC, Positive=true)";
Ruth