Spry menu question! - Macromedia Dreamweaver
This is a discussion on Spry menu question! - Macromedia Dreamweaver ; When I created a spry menu, each menu title has a little "arrow" right in the middle of the text. How do I get rid of it....
-
Spry menu question!
When I created a spry menu, each menu title has a little "arrow" right in the middle of the text. How do I get rid of it.
-
Re: Spry menu question!
hey there,
by css you can change any thing.
/* 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
{
padding-top: 1em;
padding-right: 0.8em;
padding-bottom: 1em;
padding-left: 0.8em;
text-align: center;
background-image: url(SpryMenuBarDown.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
hope this will help.