How to set up the 3D color options

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
falcon01
Advanced
Advanced
Posts: 10
Joined: Wed Jun 11, 2003 6:44 pm

How to set up the 3D color options

Post by falcon01 »

On the style properties page, it mentions:

"high3dcolor - Sets the Hight Border Color on 3D Objects for any global menu style. This is the color for menus and menuitem that have been specified to be 3 dimensional in style. Rather like the way in which Windows 98 menus appear. The High Color denotes the shadow color as a direct hit from the light source."

and for low3dcolor, the same thing except with the word Low Border instead of High Border.

I include this little piece of code into my menu in the style properties:

Code: Select all

high3dcolor="#color1"
low3dcolor="#color2"
And was wondering how do I actived the 3D properties of the menu through the menu item? So far, I just have this piece of code:

Code: Select all

high3dcolor=true;
low3dcolor=true;
But that doesn't work. Any help? Thx in advance. Hope this post made sense, lol.
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

You need to actually specify colors, which you have not done. #color1 is not a color :!: Try high3dcolor="red"; - or high3dcolor="green"; - or high3dcolor="#ff0000"; - or whatever you need.
John
falcon01
Advanced
Advanced
Posts: 10
Joined: Wed Jun 11, 2003 6:44 pm

Post by falcon01 »

I was just using "#color1" and "#color2" as examples.
Post Reply