Arrow colors in drop down submenu

I have a client that wants the black arrows in his submenus
from the drop down menu to be red.
Is there anyway that I can change the default black triangle
arrow that points to a sub menu link to be another color.
Here is an example.
Rollover on the Registration Link. You will see a bunch of
submenu options. He wants the black arrows to be red.
http://www.sacramentomedia.com/Youngsters/dropdownMenu.html
Thanks

200 lines of javascript in the head of the page, and a 30k
external js file
to get these crummy menus don't bode well. You know that the
menus cannot
be spidered and will not work at all if js is disabled,
right?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"distantskunk" <[email protected]> wrote in
message
news:eur88u$fpg$[email protected]..
>I have a client that wants the black arrows in his
submenus from the drop
>down
> menu to be red.
>
> Is there anyway that I can change the default black
triangle arrow that
> points
> to a sub menu link to be another color.
>
> Here is an example.
> Rollover on the Registration Link. You will see a bunch
of submenu
> options.
> He wants the black arrows to be red.
>
>
http://www.sacramentomedia.com/Youngsters/dropdownMenu.html
>
> Thanks
>
>
>

Similar Messages

  • How can change background color of drop down menu navigation?

    Hi,
    I am using multi level drop-down-navigation menu in my website.
    I am get good drop-down menu from htmldrive.net, but problem is how can change menu background color black to other colors.
    please help me
    Link & code is given below
    http://www.htmldrive.net/items/demo/913/Multi-Level-Drop-Down-Menu-Navigation-with-CSS3
    HTML Code
    <div id="nav">
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About Us</a></li>
    <li><a href="#">Our Portfolio</a></li>
    <li><a href="#">One Dropdown</a>
            <ul>
            <li><a href="#">Level 2.1</a></li>
            <li><a href="#">Level 2.2</a></li>
            <li><a href="#">Level 2.3</a></li>
            <li><a href="#">Level 2.4</a></li>
            <li><a href="#">Level 2.5</a></li>
            </ul>
    </li>
    <li><a href="#">Three Levels</a>
            <ul>
            <li><a href="#">Level 2.1</a></li>
            <li><a href="#">Level 2.2</a></li>
            <li><a href="#">Level 2.3</a>
                    <ul>
                    <li><a href="#">Level 2.3.1</a></li>
                    <li><a href="#">Level 2.3.2</a></li>
                    <li><a href="#">Level 2.3.3</a></li>
                    <li><a href="#">Level 2.3.4</a></li>
                    <li><a href="#">Level 2.3.5</a></li>
                    <li><a href="#">Level 2.3.6</a></li>
                    <li><a href="#">Level 2.3.7</a></li>
                    </ul>
            </li>
            <li><a href="#">Level 2.4</a></li>
            <li><a href="#">Level 2.5</a></li>
            </ul>
    </li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact Us</a></li>
    </ul>
    </div>
    CSS CODE
    #nav {
            float: left;
            font: bold 12px Arial, Helvetica, Sans-serif;
            border: 1px solid #121314;
            border-top: 1px solid #2b2e30;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
    #nav ul {
            margin:0;
            padding:0;
            list-style:none;
    #nav ul li {
            float:left;
    #nav ul li a {
            float: left;
            color:#d4d4d4;
            padding: 10px 20px;
            text-decoration:none;
            background:#3C4042;
            background: -webkit-gradient( linear, left bottom, left top, color-stop(0.09, rgb(59,63,65)), color-stop(0.55, rgb(72,76,77)), color-stop(0.78, rgb(75,77,77)) );
            background: -moz-linear-gradient( center bottom, rgb(59,63,65) 9%, rgb(72,76,77) 55%, rgb(75,77,77) 78% );
            background: -o-linear-gradient( center bottom, rgb(59,63,65) 9%, rgb(72,76,77) 55%, rgb(75,77,77) 78% );
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 0 5px rgba(0, 0, 0, 0.1) inset;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
            border-right: 1px solid rgba(0,0,0,0.2);
            text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6);
    #nav li ul {
            background:#3C4042;
            background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.09, rgb(77,79,79)), color-stop(0.55, rgb(67,70,71)), color-stop(0.78, rgb(69,70,71)) );
            background-image: -moz-linear-gradient( center bottom, rgb(77,79,79) 9%, rgb(67,70,71) 55%, rgb(69,70,71) 78% );
            background-image: -o-linear-gradient( center bottom, rgb(77,79,79) 9%, rgb(67,70,71) 55%, rgb(69,70,71) 78% );
            border-radius: 0 0 10px 10px;
            -moz-border-radius: 0 0 10px 10px;
            -webkit-border-radius: 0 0 10px 10px;
            left: -999em;
            margin: 35px 0 0;
            position: absolute;
            width: 160px;
            z-index: 9999;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset;
            -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset;
            -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset;
            border: 1px solid rgba(0, 0, 0, 0.5);
    #nav li ul a {
            background: none;
            border: 0 none;
            margin-right: 0;
            width: 120px;
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            border-bottom: 1px solid transparent;
            border-top: 1px solid transparent;

    Change this:
    .ddsmoothmenu{
    font: bold 12px Verdana;
    background: #414141; /*background of menu bar (default state)*/
    width: 100%;
    to this:
    .ddsmoothmenu{
    font: bold 12px Verdana;
    background: #new color code;
    width: 100%;
    And repeat this on other selectors.
    Nancy O.

  • Specify colors in drop down lists

    A client has requested that their drop down menu options are color coded - is this possible? As an example, they have a drop down with 3 choices (Completed, In Progress, Not Started). They want to attribute a color to each option (ie Complete - Green, In Progress - Yellow, Not Started - Red) so that when the form is filled out - a glance at the form provides a quick reference as to the status of all of their projects.  Is this possible? Thanks...  

    Here's a script that you can use as the custom Validate script for the dropdowns. It assumes there are only the three items that you mentioned and set the background color to red, yellow, or green, which will be easier to notice than the font color.
    // Custom Validate script for dropdown
    // Determine the background color
    var f_color = color.red;
    if (event.value === "In Progress") f_color = color.yellow;
    if (event.value === "Complete") f_color = color.green;
    // Set this field's background color
    event.target.fillColor = f_color;

  • Acrobat X 10.1.1 - Colors picker drop down menus not working

    Colours picker drop down menus are not working stuck on default in all selections - Is there any work around / any other way to bring in or select an exact RGB / HEX etc colour besides using this picker if it doesn't work?
    - Chris

    You can programmatically set the various field colors (text, background, border) using JavaScript. For more information:
    Color arrays: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.260.html
    textColor property: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.726.html
    So you could set up a temporary button and use the following script in the Mouse Up event:
    // Set the text color to the RGB color (237,121,5),
    // which is a nice pumpkin color
    getField("text1").textColor = ["RGB", 237/255, 121/255, 5/255];

  • Back arrow will not drop down the recent history of pages visited on a right-click.

    I use IE 11. Older versions of IE allowed you to back up to any previous page visited during the current session by right-clicking the back button. The right-click would drop down a list of pages visited, and you could choose any one of them, regardless
    of their order. With IE 11, the right-click has no effect. I must left-click the back button and go through each page previously visited serially before reaching the desired one. Have I inadvertently changed a setting or something?

    Hi,
    Right-click on the back/forward button works from my side(IE 11 on Windows 8.1 and IE 11 on Windows 7 Ulimate SP1). Not sure what is your situation.
    And there seems to be a bug related with IE 11 back button, see here:
    IE 11 back button does not work
    If you do not sure which settings have been modified, then we may consider to reset IE 11, and please take a note:
    Resetting Internet Explorer isn't reversible, and all previous settings are lost after reset.
    Here is a reference:
    Change or reset Internet Explorer settings
    Hope this may help
    Best regards
    Michael Shao
    TechNet Community Support

  • I can't see my drop down submenu on my menu bar...

    Hi
    I've created a spry menu bar and for some reason my sub menus are not dropping down when i hover over them when i test it on my server. They did at one point, so what could i have changed to make them disappear? I cant figure it out. can any one help?
    thanks,
    Aneka.

    Aneka,
    It is very hard for us to see what has gone wrong without being privy to the code.
    Usually the problem is a non-functioning JS, but it could also be that you have introduced an FLV file with the wrong parameters.
    Come to think of it, it could be a number of things.
    Gramps

  • Horizontal Drop Down Submenu

    I am still having the problem with submenus being displayed
    vertically in IE 7 only. Everything looks fine in Firefox and
    Netscape. I have read the articles and hacks for browser bugs but
    still can't get this fixed in IE 7. I know it has something to do
    with auto width because the problem doesn't appear until the widths
    are changed. Any help is greatly appreciated!
    Here is the test page:
    Test Page
    Here is the modified CSS.
    CSS

    To clarify: I'm trying to create a click-action drop-down menu as shown on this site:
    http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/
    which I have been able to implement in Dreamweaver. The question is how to incorporate the html/css code in Muse and the suggested videos are not clear on this. I can get as far as inserting css (bracketed by Style tags) in the Page Properties dialog box, after which I'm lost. Any suggestions?

  • When I click on the arrow for a drop down list, the list of options flashes on and disappears with a fourth of a second. To select one of the options, you have to press the key of the first letter of the first word in the description.

    Using Windows 7 and firefox 3.6.8 Occurs on all sites w/Firfox but not with IE.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Drop down menu button will not change color

    I have built a 6 button  rollover dropdown menu bar in Flash CS4
    On five of the dropdown menus I can get the buttons to change color
    On the fifth dropdown I can see the button, but when rolled over I can't get the color to change.
    I have moved the buttons on the fifth drop down to the first drop down button and they work perfectly.
    Is this a bug in Flash CS4 or......
    thank you
    Sb!

    I appreciate your reply but those arrows were not the ones I was trying to describe. In the same box where you would type your web address on the far right is a small star and then next to it an arrow pointing down. If you click on this arrow, it normally drops down a list of the websites you commonly use. Or, if you are on a website ordering something, there might be a similar arrow that you need to select in order to choose which shipping you might want such as ground, next day air, etc., these are the kinds of arrows that are not working correctly now. Any ideas on these? Thanks for trying to help me.

  • Acrobat Color Management - Color Profiles Missing from Drop down list

    I have created a custom .icc profile for my large format plotter. The .icc file is located in C:\WINDOWS\system32\spool\drivers\color, but it is not visible in my Color Profile drop down list, in the Color Management section of the Advanced Print Setup box, which is available via the Advanced option in the print dialog box. I have set up 10 users, some have Acrobat 8, some have acrobat 9. Of those 10 the profile is not showing up on one of the Acrobat 8's and one of the Acrobat 9's. To complicate matters, last night I sucessfully created a preset for an Acrobat 9 user and linked the profile, but after he logged off and back on today he can no longer see the profile either. Have you ever seen this activity? -Thanks

    Here's the link:
    http://forums.adobe.com/community/acrobat/acrobat_windows

  • Toolbar does not appear except for little arrows for drop down

    Premier Elements 8 running on Windows 7  - on the top of the page the organizer icon appear (small box containing smaller boxes) and then there's a blank space for few inches, them a small right arrow with a dropdown icon.  When i click the arrow there's drop down with what appears to be all the standard options (file, edit, etc)
    how do i get the icon buttons to appear accross the toolbar??

    Perfect - the fix for windows 7 is to select "use system fonts" under the general preferences tab and then restart the program!
    Thanks for the quick reply.

  • Thanks to the super-users, and questions on backgrounds and drop-down menu

    Hi all.
    I've spent a fair amount of time perusing the archives, so I don't have to bother you all with the basic questions. Great thanks to Wyodor, Old Toad, Ethmoid and Cyclosaurus for their excellent and oft-repeated tutorials.
    With your help, I've figured out how to set up a personal domain name, modify my background image, and create a drop-down menu. (These were major accomplishments for a neophyte like me.) My primitive template can be seen here:
    http://www.monroekarate.org/dojo/Template.html
    And I am pretty happy with it. I have one problem, and one minor element that I'd like to fix.
    The drop-down menu was created following the excellent tutorial from the iWebfaq but I notice that although it looks perfect there is one malfunction. If you hover and try to select an element where there is no underlying content, it works fine. When you try to select a list item with underlying content, however, the drop-down disappears. Any idea why that happens or how I can fix it? I suppose I could just add a space buffer, but that is an inelegant solution.
    On a more trivial note, the background was actually supposed to be composed of two images. The top row was supposed to be a horizontal set of tiles (slightly darker in color) and the rest of the background was tiled in a second image, giving a gradient effect. I used the script Wyodor described here with repeat set to yes which gave me single-image tiling. Looks OK, but if I could get both sets of tiles used it would add substantial richness to the visual effect. Ideas?
    Thanks again for all your help to date, and thanks in advance for considering this issue!
    Cheers,
    Liam

    I appreciate your reply but those arrows were not the ones I was trying to describe. In the same box where you would type your web address on the far right is a small star and then next to it an arrow pointing down. If you click on this arrow, it normally drops down a list of the websites you commonly use. Or, if you are on a website ordering something, there might be a similar arrow that you need to select in order to choose which shipping you might want such as ground, next day air, etc., these are the kinds of arrows that are not working correctly now. Any ideas on these? Thanks for trying to help me.

  • Is this a bug for drop down box in DS1.3?

    I found that if there were many items (e.g. 50), when I clicked the arrow of the drop down box, it showed the items and then disappeared all the items except "ALL". I have to use "F4" key to display all the items and use scroll bar to show the items.
    It is OK when there are few items and no scroll appears in the list.
    Did anybody meet with the same problem?
    Thank you.

    Roam,
    Thanks again for your suggestion,
    "Furthermore one should always Repair Permissions both before doing a Software Update and again afterwards."
    I honestly dont know anything about this "Repair Permissions" from the name, i though it is a verification of authentication to repair OS or some kind of credential issue, and since i m admin user then there is no point to verify it, i should be allowed to do so. Again it is my first time to do this thing in 3 - 4 years of using panther, every time i update software i never ever do this! If this step is essential for every update and installation why dont apple put them as one of TODO step during the processes (as licensing agreement) instead of keep them as an option (just my thought) Anyway, I m glad u tell me about it, and i will give it a shot tonight.
    "That may because you didn't have sufficient disk space. In fact running out of disk space can create all sorts of problems. Please tell me how disk space is available on your
    start up drive."
    That what I thought coz i have only 5.x GB left in 60 GB HD. Thats why I claimed as whining and have to scarify the lost of data by reinstall panther in order to get my mac back to work
    "So are you saying it is a bug or it is a hacker, I don't believe it is either"
    Please see second update info about password, and i m not impose anyone to believe, thats why the topic is a questioning sentence "Is this a bug.."
    "This Discussion site is not Applecare. The people here give their time voluntarily to those who are receptive to help."
    Thats why i ask for "mac expert" not "apple authority/technician" and always appreciate any suggestion.
    Anyway, that great to hear from you and i have learned new thing from your suggestion. I will let u know when i have tried it.

  • Font Drop Down behavior CS3-5 vs CS6

    Can anyone help, i have searched and searched. It used to be in all previous versions that when you have a font, say helvetica LT, that you are using in a document and you wanted to use say a different version of helvetica. You could click the the arrow for the drop down on the font name and you would be in the H's, highlighted on the font you were using. Now, its just top of the list, A's. You can use the arrow keys to go back and forth and cycle through the fonts but this is is in both ways a travesty to efficiency and workflow and everyone is used to it. Despite looking, we cant find a way to change this setting of behavior. Can you help, its very appreciated!

    We're a print shop. One that specializes in on demand, drop ship fullfillment. I dont need to pay for the ability to make apps, etc and I certainly dont see how telling my clients, who could care less, that they are paying more so I can develop products they dont want to buy and they dont need is going to accomplish anything when I have to raise my price.
    My primary reason for actively voicing these feelings is so Adobe sees them. I hope Adobe goes outside its forums and looks into this and reads its emails. I think plenty are not happy.
    Look, I like Adobe, really, but not at ANY cost. i dont love ANY product at ANY cost. Adobe will hopefully learn that lesson like many companies before it who have tried similar things or tried to stick to similar concepts. Per minute internet comes to mind, heck even per minute phones which is a dying concept and i think eventually this attempted return to charging by bandwidth, and these things I mention are like this because THEY are finite resources and have some scarcity in some manner. Adobe, really isnt and any scarcity it has is going to be artificial.
    I've seen them come and go so many times and I always hear these arguments. I worked with a guy once long ago who said Quark would never be replaced as the standard. I knew a guy who worked in one of their fulfillment centers and he told me, they knew about the things the customers didnt like but they thought they were above it. They openly talked about it. Corel, etc. Dont get me wrong. I'm super happy we arent waxing clipart to be exposed and then stripped in to large format film anymore, but Adobe is not the only option, period.
    As to the original discussion:
    I guess i wouldnt say they broke it, but it does feel a bit like blackmail. Well, we have it, but only over here for more money, even though it was standard before. What gets me, is they didnt make it an either or option, they just trashed the other way, and that just seems like either lazy or indifferent product design. Either way... we pay... and then pay again, and apparently pay again and so on.

  • Flash Drop Down Menu Buttons

    I was under the impression that Flash allowed one to place
    buttons within buttons. Basically I am trying to create a simple
    drop down navigation menu. A simple horizontal bar with four
    buttons that change color and drop down menus as the viewer scrolls
    over the buttons. I would then like the drop down text titles to
    change color as the viewer scrolls over the individual items on the
    drop down menu. When the viewer clicked on the title ("down"
    position) it would once again change color. Thank you.

    I ended up doing just what you suggested and everything in
    the Universe is back in place.
    Thank you.

Maybe you are looking for

  • How do i fix my upgrade error ? iphone 4 won't turn on to reload and itunes won't recognize

    HELP! - I just tried to upgrade my iphone4 to iOS 5.1.1 and an error occured sometime thereafter. Now my phone is stuck in that initial (plug usb -----> itunes) graphic/picture thing you see when you turn your iphone on for ther very first time. I ha

  • CX_SY_CONVERSION_NO_NUMBE

    Hi All, we are getting a short dump, can you please help me with this: Runtime Errors         CONVT_NO_NUMBER Exception              CX_SY_CONVERSION_NO_NUMBER An exception occurred that is explained in detail below. The exception, which is assigned

  • Where are bin.0.0.jar file?

    Hi all, I'm installing Oracle 9.0.1.0.0 and i've encountered some problems. The system does not found some files. Could s.o. please ensure if he/she have something in the /mnt/cdrom/stage/Components/oracle.rdbms.csmig? In my installation cd this dire

  • Apple's Single-Document Interface in Windows

    I've been a Windows user all my life, but I use a Mac at work.  I've come to appreciate one and only thing about OSX, and that is the SDI (single document interface).  I can easily drag vector objects from my Illustrator window into a Photoshop windo

  • My itunes won't print.  Printer show nothing in que.  One day it and the next no

    My itune won't print.  One day worked, the next no.  printer works fine but when trying to print itunes it does'nt even show in the printer que.