I want to have in my menu only the background color. How to get rid of the 3d hadow effect in the main menu.
BTW is there any possibility to change the width of each cell of the menu?
thanx
How to get rid off the 3d shadow?
-
- Beginner
- Posts: 1
- Joined: Tue Jul 09, 2002 4:38 pm
- Contact:
You need to set "Strength to 0 in the following code in meny_array.js:
// Special effect string for IE5.5 or above please visit http://www.milonic.co.uk/menu/filters_sample.php for more filters
if(navigator.appVersion.indexOf("MSIE 6.0")>0)
{
effect = "Fade(duration=0.2);Alpha(style=0,opacity=100);Shadow(color='#777777', Direction=135, Strength=0)"
}
else
{
effect = "Shadow(color='#777777', Direction=135, Strength=0)" // Stop IE5.5 bug when using more than one filter
}
To set menu width:
150, // Menu Width - Menus width in pixels
// Special effect string for IE5.5 or above please visit http://www.milonic.co.uk/menu/filters_sample.php for more filters
if(navigator.appVersion.indexOf("MSIE 6.0")>0)
{
effect = "Fade(duration=0.2);Alpha(style=0,opacity=100);Shadow(color='#777777', Direction=135, Strength=0)"
}
else
{
effect = "Shadow(color='#777777', Direction=135, Strength=0)" // Stop IE5.5 bug when using more than one filter
}
To set menu width:
150, // Menu Width - Menus width in pixels
Christian Watson