Jump to content

How To Only Modify Top Level Menu Items


jah9876

Recommended Posts

We wish just to changes the top level Menu Bar item width and background color. We do NOT want to make any changes to the 2nd or 3rd level menu. Can you please tell us how to do this?The horizontal Menu Bar test file is:http://www.angelfire.com/pro/hollywoodhouse/test-menu.htmlWe saved the html file in text.http://www.angelfire.com/pro/hollywoodhouse/test-menu.txtThank you.

Link to comment
Share on other sites

try this:ul.MenuBarHorizontal li{width: 12em;} /* adjust parent toplevel width */ul.MenuBarHorizontal li li {background-color: #EEEEEE;} /*sets all sublevels to light grey background*/ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible{background-color: #0ff; color: #000; font-size: 10px; height: 18px; line-height: 18px;} /* sets parent toplevel background color, text color, font-size, blah, blah */ul.MenuBarHorizontal li li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li li a.MenuBarSubmenuVisible {background-color: #009; color: #fff; font-size: 13px; width: auto;} /* resets sublevels to original settings*/place above code, above this commented text heading:/******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/

Link to comment
Share on other sites

Thank you DSONESUK for your kind advise. This is what we found based on your suggestions:ul.MenuBarHorizontal li{width: 12em;} /* adjust parent toplevel width */This works great. The top level menu items were widened. Thank you.ul.MenuBarHorizontal li li {background-color: #EEEEEE;} /*sets all sublevels to light grey background*/This has no effect at all.ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible{background-color: #0ff; color: #000; font-size: 10px; height: 18px; line-height: 18px;} /* sets parent toplevel background color, text color, font-size, blah, blah */This changes the top level item Hover background color and text size.Can you please tell me how to change the same top level item NON-hover background color and text size?ul.MenuBarHorizontal li li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li li a.MenuBarSubmenuVisible {background-color: #009; color: #fff; font-size: 13px; width: auto;} /* resets sublevels to original settings*/This only change item 3.1 (second submenu, first item) hover background color and font size. All other items are not effected. Strange.place above code, above this commented text heading:Yes, we insert these code at this point. Thank you so much./******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/

Link to comment
Share on other sites

ul.MenuBarHorizontal li{width: 10em;} /*use this to adjust parent toplevel menu styling, add required Background color and font-size width etc */ul.MenuBarHorizontal li li a {background-color: #EEEEEE;} /* use this to set background colour of all sublevels change to required*/ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible{background-color: #0ff; color: #000; } /* sets PARENT TOPLEVEL ONLY WHEN HOVERED OVER background colour, text colour etc. change to required */ul.MenuBarHorizontal li li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li li a.MenuBarSubmenuVisible {background-color: #009; color: #fff; font-size: 13px; width: auto;} /*To prevent all sublevels, adopting PARENT TOPLEVEL css styling WHEN HOVERED OVER, this sets them back to original colour #009 font size and width etc, change to required*/

Link to comment
Share on other sites

Dear Dsonesuk,Thank you for your advices.I edit the SpryAssets\SpryMenuBarHorizontal.css file. Well, same strange test results.ul.MenuBarHorizontal li{width: 10em;} /*use this to adjust parent toplevel menu styling, add required Background color and font-size width etc - change to YOUR requirements */Yes, parent top level item width changes correctly. Hover over background color do change as programmed. But not-hover background color does not change.ul.MenuBarHorizontal li li a {background-color: #EEEEEE;} /* use this to set background colour of all sublevels - change to YOUR requirements*/Strange, this only change hover over background color of item #3.1 (second level of this item only). No effect to any other items.ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible{background-color: #0ff; color: #000; } /* sets PARENT TOPLEVEL ONLY WHEN HOVERED OVER background colour, text colour etc - change to YOUR requirements */Yes, this change parent top level hover over background color and font size.ul.MenuBarHorizontal li li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li li a.MenuBarSubmenuVisible {background-color: #009; color: #fff; font-size: 13px; width: auto;} /*To prevent all sublevels, adopting PARENT TOPLEVEL css styling WHEN HOVERED OVER, this sets them back to original colour #009 font size and width etc - change to YOUR requirements*/Also, this only change one item #3.1 hover over background color and fond.Thank you and hope you can solve this strange problems.

Link to comment
Share on other sites

Now this is my code, as follows; in additional to SpryAssets/SpryMenuBar.jsThe result is:Top parent level width change as programmed. Hover over background do change. But please tell me how to change Non-hover background color change?Submenu hover over background color change differently item 1 and item 3 are different with item 2 and item 3. Submenu non-hover over background color do change correctly as programmed.Thank you very much for your time.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><!-- saved from url=(0014)about:internet --><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>horizontal menu - Dreamweaver debug</title><script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script><style type="text/css">/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 *//* Copyright © 2006. Adobe Systems Incorporated. All rights reserved. *//******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************//* The outermost container of the Menu Bar, an auto width box with no margin or padding */ul.MenuBarHorizontal{ margin: 0; padding: 0; list-style-type: none; font-size: 100%; cursor: default; width: auto;}/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ul.MenuBarActive{ z-index: 1000;}/* Menu item containers, position children relative to this container and are a fixed width */ul.MenuBarHorizontal li{ margin: 0; padding: 0; list-style-type: none; font-size: 100%; position: relative; text-align: left; cursor: pointer; width: 8.8em; float: left;}/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ul.MenuBarHorizontal ul{ margin: 0; padding: 0; list-style-type: none; font-size: 100%; z-index: 1020; cursor: default; width: 8.6em; position: absolute; left: -1000em;}/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible{ left: auto;}/* Menu item containers are same fixed width as parent */ul.MenuBarHorizontal ul li{ width: 8.6em;}/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ul.MenuBarHorizontal ul ul{ position: absolute; margin: 1% 0 0 98%;}/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible{ left: auto; top: 0;}/******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************//* Submenu containers have borders on all sides */ul.MenuBarHorizontal ul{ border: 1px solid #CCC;}/* Menu items are a light gray block with padding and no text decoration */ul.MenuBarHorizontal a{ display: block; cursor: pointer; background-color: #EEE; padding: 0.4em 0.4em; color: #000; text-decoration: none;}/* Menu items that have mouse over or focus have a blue background and white text */ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus{ background-color: #00FF66; color: #FFF;}/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{ background-color: #000099; color: #FFF;}ul.MenuBarHorizontal li{width: 12em;} /*use this to adjust parent toplevel menu styling, add required Background color and font-size width etc - change to YOUR requirements */ul.MenuBarHorizontal li li a {background-color: #0f0;} /* use this to set background colour of all sublevels - change to YOUR requirements*/ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible{background-color: #f00; color: #000; } /* sets PARENT TOPLEVEL ONLY WHEN HOVERED OVER background colour, text colour etc - change to YOUR requirements */ul.MenuBarHorizontal li li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li li a.MenuBarSubmenuVisible {background-color: #0ff; color: #fff; font-size: 13px; width: auto;} /*To prevent all sublevels, adopting PARENT TOPLEVEL css styling WHEN HOVERED OVER, this sets them back to original colour #009 font size and width etc - change to YOUR requirements*//******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************//* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal a.MenuBarItemSubmenu{ background-image: url(SpryAssets/SpryMenuBarDown.gif); background-repeat: no-repeat; background-position: 95% 50%;}/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{ background-image: url(SpryAssets/SpryMenuBarRight.gif); background-repeat: no-repeat; background-position: 95% 50%;}/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{ background-image: url(SpryAssets/SpryMenuBarDownHover.gif); background-repeat: no-repeat; background-position: 95% 50%;}/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{ background-image: url(SpryAssets/SpryMenuBarRightHover.gif); background-repeat: no-repeat; background-position: 95% 50%;}/******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************//* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ul.MenuBarHorizontal iframe{ position: absolute; z-index: 1010;}/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */@media screen, projection{ ul.MenuBarHorizontal li.MenuBarItemIE { display: inline; f\loat: left; background: #FFF; }}</style></head><body style="width:85%; margin-left:auto; margin-right:auto"><img src="http://l.yimg.com/a/i/ww/beta/y3.gif" width="232" height="44" /><div style="position: absolute; width: auto; height: auto; left: 35%; top: 3%; font-size:small; font-family: Arial, Helvetica, sans-serif;" > <ul id="MenuBar1" class="MenuBarHorizontal"> <li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Products</a>'>http://www.google.com/">Products</a> <ul> <li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 1.1</a> <ul> <li><a href="http://www.google.com/">Item 1.1.1</a></li> </ul> </li> <li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 1.2</a> <ul> <li><a href="http://www.google.com/">Item 1.2.1</a></li> </ul> </li> <li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 1.3</a> <ul> <li><a href="http://www.google.com/">Item 1.3.1</a></li> <li><a href="http://www.google.com/">Item 1.3.2</a></li> </ul> </li> </ul> </li> <li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Manufacturing</a> <ul> <li><a href="http://www.google.com/">Item 2.1</a></li> <li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 2.2</a> <ul> <li><a href="http://www.google.com/">Item 2.2.1</a></li> </ul> </li> <li><a href="http://www.google.com/">Item 2.3</a></li> </ul> </li><li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Services</a> <ul> <li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Item 3.1</a> <ul> <li><a href="http://www.google.com/">Item 3.1.1</a></li> <li><a href="http://www.google.com/">Item 3.1.2</a></li> </ul> </li> <li><a href="http://www.google.com/">Item 3.2</a></li> <li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 3.3</a> <ul> <li><a href="http://www.google.com/">Item 3.3.1</a></li> </ul> </li> </ul> </li> <li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Company</a> <ul> <li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 4.1</a> <ul> <li><a href="http://www.google.com/">Item 4.1.1</a></li> </ul> </li> <li><a href="http://www.google.com/">Item 4.2</a></li> <li><a href="http://www.google.com/">Item 4.3</a></li> </ul> </li> </ul></div><p> </p><p> </p><p>Debug Dreamwaver Spry Menu Bar - Horizontal.</p><script type="text/javascript"><!--var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});//--></script></body></html>

Link to comment
Share on other sites

We have tested on Firefox 3.0.13, Microsoft Internet Explorer 7.0.6000.16757, Microsoft Internet Explorer 6.0.2900.2180.xpsp_sp2_rtm.040803-2158, Google Chrome 2.0.172.39Systems are Microsoft Vista Ultimate 32 bits, Microsoft XP Professional Version 2002 Service Pack 2.

Link to comment
Share on other sites

Right this seems to work in all browsers<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><!-- saved from url=(0014)about:internet --><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>horizontal menu - Dreamweaver debug</title><script src="SpryMenuBar.js" type="text/javascript"></script><style type="text/css">/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 *//* Copyright © 2006. Adobe Systems Incorporated. All rights reserved. *//*******************************************************************************LAYOUT INFORMATION: describes box model, positioning, z-order*******************************************************************************//* The outermost container of the Menu Bar, an auto width box with no margin or padding */ul.MenuBarHorizontal{margin: 0;padding: 0;list-style-type: none;font-size: 100%;cursor: default;width: auto;}/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ul.MenuBarActive{z-index: 1000;}/* Menu item containers, position children relative to this container and are a fixed width */ul.MenuBarHorizontal li{margin: 0;padding: 0;list-style-type: none;font-size: 100%;position: relative;text-align: left;cursor: pointer;width: 8.8em;float: left;}/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ul.MenuBarHorizontal ul{margin: 0;padding: 0;list-style-type: none;font-size: 100%;z-index: 1020;cursor: default;width: 8.6em;position: absolute;left: -1000em;}/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible{left: auto;}/* Menu item containers are same fixed width as parent */ul.MenuBarHorizontal ul li{width: 8.6em;}/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ul.MenuBarHorizontal ul ul{position: absolute;margin: 1% 0 0 98%;}/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible{left: auto;top: 0;}/*******************************************************************************DESIGN INFORMATION: describes color scheme, borders, fonts*******************************************************************************//* Submenu containers have borders on all sides */ul.MenuBarHorizontal ul{border: 1px solid #CCC;}/* Menu items are a light gray block with padding and no text decoration */ul.MenuBarHorizontal a{display: block;cursor: pointer;background-color: #EEE;padding: 0.4em 0.4em;color: #000;text-decoration: none;}/* Menu items that have mouse over or focus have a blue background and white text */ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus{background-color: #00FF66;color: #FFF;}/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{background-color: #000099;color: #FFF;}/******************** admendments by dsonesuk ****************************/ul.MenuBarHorizontal li{width: 10em;} /*use this to adjust parent toplevel menu width */ul.MenuBarHorizontal li a { background-color:#FF33FF;} /* use to set toplevel background-color, text color */ul.MenuBarHorizontal li li a {background-color: #0f0; width: 7.9em;} /* use this to set background colour of all sublevels - change to YOUR requirements*/ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible, ul.MenuBarHorizontal a:hover {background-color: #f00; color: #000; } /* sets PARENT TOPLEVEL ONLY WHEN HOVERED OVER background colour, text colour etc - change to YOUR requirements */ul.MenuBarHorizontal li li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li li a.MenuBarSubmenuVisible, ul.MenuBarHorizontal ul li a:hover {background-color: #0ff; color: #fff; font-size: 13px; width: auto;} /*To prevent all sublevels, adopting PARENT TOPLEVEL css styling WHEN HOVERED OVER, this sets them back to original colour #009 font size and width etc - change to YOUR requirements*//*******************************************************************************SUBMENU INDICATION: styles if there is a submenu under a given menu item*******************************************************************************//* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal a.MenuBarItemSubmenu{background-image: url(SpryAssets/SpryMenuBarDown.gif);background-repeat: no-repeat;background-position: 95% 50%;}/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{background-image: url(SpryAssets/SpryMenuBarRight.gif);background-repeat: no-repeat;background-position: 95% 50%;}/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{background-image: url(SpryAssets/SpryMenuBarDownHover.gif);background-repeat: no-repeat;background-position: 95% 50%;}/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{background-image: url(SpryAssets/SpryMenuBarRightHover.gif);background-repeat: no-repeat;background-position: 95% 50%;}/*******************************************************************************BROWSER HACKS: the hacks below should not be changed unless you are an expert*******************************************************************************//* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ul.MenuBarHorizontal iframe{position: absolute;z-index: 1010;}/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */@media screen, projection{ul.MenuBarHorizontal li.MenuBarItemIE{display: inline;f\loat: left;background: #FFF;}}</style></head><body style="width:85%; margin-left:auto; margin-right:auto"><img src="http://l.yimg.com/a/i/ww/beta/y3.gif" width="232" height="44" /><div style="position: absolute; width: auto; height: auto; left: 35%; top: 3%; font-size:small; font-family: Arial, Helvetica, sans-serif;" ><ul id="MenuBar1" class="MenuBarHorizontal"><li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Products</a><ul><li><a'>http://www.google.com/">Products</a><ul><li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 1.1</a><ul><li><a href="http://www.google.com/">Item 1.1.1</a></li></ul></li><li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 1.2</a><ul><li><a href="http://www.google.com/">Item 1.2.1</a></li></ul></li><li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 1.3</a><ul><li><a href="http://www.google.com/">Item 1.3.1</a></li><li><a href="http://www.google.com/">Item 1.3.2</a></li></ul></li></ul></li><li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Manufacturing</a><ul><li><a href="http://www.google.com/">Item 2.1</a></li><li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 2.2</a><ul><li><a href="http://www.google.com/">Item 2.2.1</a></li></ul></li><li><a href="http://www.google.com/">Item 2.3</a></li></ul></li><li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Services</a><ul><li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Item 3.1</a><ul><li><a href="http://www.google.com/">Item 3.1.1</a></li><li><a href="http://www.google.com/">Item 3.1.2</a></li></ul></li><li><a href="http://www.google.com/">Item 3.2</a></li><li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 3.3</a><ul><li><a href="http://www.google.com/">Item 3.3.1</a></li></ul></li></ul></li><li><a class="MenuBarItemSubmenu" href="http://www.google.com/">Company</a><ul><li><a href="http://www.google.com/" class="MenuBarItemSubmenu">Item 4.1</a><ul><li><a href="http://www.google.com/">Item 4.1.1</a></li></ul></li><li><a href="http://www.google.com/">Item 4.2</a></li><li><a href="http://www.google.com/">Item 4.3</a></li></ul></li></ul></div><p> </p><p> </p><p>Debug Dreamwaver Spry Menu Bar - Horizontal.</p><script type="text/javascript"><!--var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});//--></script></body></html>

Link to comment
Share on other sites

Browser tested:Firefox 3.0.13, Microsoft Internet Explorer 7.0.6000.16757, Microsoft Internet Explorer 6.0.2900.2180.xpsp_sp2_rtm.040803-2158, Google Chrome 2.0.172.39Safari 4.0 (520.17)Systems:Microsoft Vista Ultimate 32 bits, Microsoft XP Professional Version 2002 Service Pack 2.Microsoft Vista Home Basic, 32 bit, Service Pack 2

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...