Way to remove drop-down menu icons?

i just installed an add-on )FoxReplace) and it puts an icon in the menu (Tools section). it really bothers me because it sticks out like a sore thumb and since i use that add-on to block words i dont like seeing, it ends up reminding me of the words since when i go into the menu, i see the icon and it distracts me. here is a picture of what i mean: http://img269.imageshack.us/img269/319/ffmenu.jpg
i already went into the about: config and toggled the icon options to false and made the size 0, doesnt do anything.

Add code to userChrome.css below the default @namespace line.
*http://kb.mozillazine.org/userChrome.css
The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
*http://kb.mozillazine.org/Editing_configuration
<pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#toolbar-menubar menuitem .menu-iconic-icon { display:none!important; }
</nowiki></pre>

Similar Messages

  • News from a drop-down menu icon possible?

    I use Safari RSS feeds; and I have a few News Widgets. But it would be great to have a menubar where I could get news feeds. Does anyone know if this exists?
    With a PC I use at work, their "widgets" can float (but be hidden) and one has news feeds that if one mouses-over, gives some details; if one clicks on that, even more details; and clicking on the title takes one to the web and the full article.
    Kinda neat! Anything like that possible with the Mac? I believe one can turn a widget into a self-running program---
    A menubar item (like Stock Menulet for stock pricing- which has news feeds for the stocks) would be great.
    Thanks for any comments -- a variety of things requested here-- some or all would be super to have.

    Hi
    There are several 3rd-party apps - have a look at Butler, http://www.macupdate.com/info.php/id/12170/butler or ClawMenu, http://www.macupdate.com/info.php/id/16622 (run a search on MacUpdate for more).
    (Here's a screenshot of ClawMenu's RSS, http://droplr.com/1uR8H.)
    There are also some good Yahoo! Widgets where you can set the window level. See http://widgets.yahoo.com/widgets/newsstand for starters.

  • LiveCycle Designer 8.0 Drop-down menu help - newbie

    I am new with LiveCycle and do not know much about coding and the like. I've search the forums and have not found quite what I need. (It might be because I don't know the correct terms to search - so I apologize in advance if there was a previous posting regarding this)
    I am creating a form for lab tests for referring physicians to fill out.
    for simplicity, I will just use the state, city example.
    >>>>>> QUESTION 1.
    I have dragged/dropped a drop-down menu icon onto the form, gone through the Palette>Object>Field>List Items to compile the list of states (in my real case, a list of lab tests)
    How can I get the second drop down menu to show the corresponding cities based on the "state" selected in the first drop down menu? So that when I choose "California" I have the option in the second drop-down menu to choose from "Los Angeles," "Orange County," "Long Beach," etc
    VERSUS
    if I select "Texas" the list will retrieve "Houston," "Sugarland," "Dallas," etc.
    I read about hardcoding and although I'm not quite sure what that means, I think that is what I will be doing as I will not be referencing outside of my form.
    Also, the items in these menus are long/descriptive in nature, is there a way to refer to the lists in the code without having to type everything out? In my form (instead of "state") I will have lab tests "Test_1" with CPT codes attached, that is the list includes items like:
    93880 - carotid duplex scan, bilateral
    93882 - carotid duplex scan, unilateral
    and in drop-down list 2 I have items like:
    454.0 - varicose vein with ulcer
    454.1 - varicose veins with inflammation
    it would be such a pain to type each out in the code, but if there are no other ways around it, that is fine too.
    >>>>>>> QUESTION 2.
    The referring physician will have the option to email this form to the vascular lab scheduler. To prevent an "accidental" changes, I would like the form to be a "live form" for people to fill out, but upon return, the form to be a static PDF file, that is, the person receiving the email does not have the option to make any changes (purposeful or accidental), is there a way to do this?
    THANK YOU SO MUCH IN ADVANCE!
    again, I apologize for asking for help for what I'm sure is an easy fix. I don't know very much about the coding language, if it is not too much to ask - step-by-step would be helpful.
    I'm using Adobe LiveCycle Designer 8.0.
    Thank you.
    -Viv

    Hi Geo,
    Thank you for the link.
    Sorry, this is very difficult for me to explain not knowing the scripting language, but I will try my best not to confuse you too much.
    I was able to get Thom's example to work, and based on that, I was able to get this hypothetical situation to work:
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    12345678912345678: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    HOWEVER, I cannot get something like this one to work (the only difference is that I added a "9" to the first option) it seems as though I cannot insert anything beyond 17 consecutive characters (no dashes and underscores are allowed either):
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    123456789123456789: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    The form I am creating is a Vascular Lab request form, where the test ordered (drop down box 1)has a CPT code to reference the test being ordered (i.e., 93880 - Carotid Duplex Scan, bilateral) and the test has a set of diagnoses (ICD-9 codes) in drop down box 2, associated with that test (i.e., 459.81 - Venous Insufficiency)
    I have found that I do not have a problem with the "diagnoses" but I cannot add the descriptive test select in the first place. That is, the code works fine if I leave it as "93880" but not "93880 - description." I have also run into the problem that I cannot use dashes or underscores, nor can I type more than 17 characters otherwise the code no longer works.
    Is there something I need to add or remove in order to make this work?
    Thank you in advance for your help and patience!

  • How can I remove a misspelled username or e-mail addy that is saved in the drop down menu without removing all of them?

    When e-mail addresses or usernames are saved in the drop down menu for easy access, is there a way to remove only the misspelled ones without removing all the correct spelled ones?

    When you see one of those mis-spelt items, highlight it and then hit the Delete key (or hit {Ctrl + Delete} on some platforms).
    http://support.mozilla.com/en-US/kb/Form+autocomplete#Deleting_individual_form_entries

  • Removing genres from drop down menu in iTunes.

    How can I remove deleted genres from the drop down menu in iTunes? This is not a question on how to remove genres from iTunes interface but from the drop down menu once a genre has been removed.

    Ok, got link by pasting
    To stream music from your computer to an AirPort Express, or to stream videos and music from your computer to Apple TV, click the icon in the bottom right corner of the iTunes application (verify that you have iTunes 10.2 or later)."
    But , my iTunes, 10.5, has no such icon.

  • Is there a way to create a drop down menu with an automatic answer dependent on what is chosen?

    Is there a way to create a drop down menu with an automatic answer dependent on what is chosen? An if-then statement perhaps?  I am looking to add over 100 drop down options and would like to have a message automatically pop up depending one which option they chose.  Thank you.

    Hi,
    You would use the skip logic to conditionally show form items based on the selection within the drop-down menu. Here's a link to a description of the feature in our help documentation:
    http://help.adobe.com/en_US/formscentral/using/WSd789abd336388b1642c7fce012da94afe4f-8000. html#WS0faeceb8c23f5d60-774f03e3131ddc76d7d-8000
    Regards,
    Brian

  • Cannot remove autocomplete entry from address bar; have already cleared history, and entry is not in the drop-down menu of the address bar either.

    I am having problems removing an autocomplete entry from my address bar; I have tried clearing my history, so it's no longer in that, and I do not have it bookmarked either, so it's not getting the URL from that location either. The autocomplete entry isn't even showing up in the drop down menu, so I can't even scroll through that to delete it.
    Basically, I want to be able to type "st" and go to "store.steampowered.com"; however, despite numerous times of typing in "st" and then going down into the drop-down menu to choose "store.steampowered.com", the bar continues to autocomplete "steamtrades.com", which is exceptionally annoying because I do not have that website bookmarked, or in my history, yet it continues to autocomplete to that address, which I do not want it to autocomplete to, and cannot figure out how to remove because I've already cleared my history multiple times, do not have it bookmarked, and it is not showing up in the drop down of the address bar for me to go down and force delete it.

    Did you try to remove some letters from steamtrades.com to see if that bring this entry up in the drop-down list?
    If it is not in the history then it might be present with a typed=1 flag indicating that you have typed or pasted it in the location bar.
    You can use the SQLite Manager extension in Firefox to inspect the places.sqlite file to see if this entry comes up in the moz_places table.
    *SQLite Manager: https://addons.mozilla.org/firefox/addon/sqlite-manager/
    <pre><nowiki>SELECT datetime(visit_date/1000000,'unixepoch') AS visit_date, url, title, visit_count, frecency
    FROM moz_places, moz_historyvisits
    WHERE moz_places.id = moz_historyvisits.place_id AND url LIKE '%steamtrades.com%'</nowiki></pre>

  • Adobe Form... Is there a way to use a drop down menu to highlight or note other fields...

    I am working on a simple Adobe form.  I am currently trying to figure out if there is a way to use the answers of a drop down menu to either mark, note or highlight 14 other fields.  There are 9 possibilities in the drop down menu, include a blank and NONE.
    For example if the drop down menu is set to 1, then field 9, 10 and 14 are marked, noted or highlighted. 
    Is this possible with a script?
    Thank you in advance for any help! 

    Have you looked at the properties that are available to form fields. I would look at setting the fill color or border color for a form field. Either of these can be done with Acrobat JavaScript.

  • Unknown PC icon showing up in the shared drop down menu - a hacker?

    There is an unknown PC "kirkshp" showing up in the shared drop down menu, that makes me worried. I have shut off my bluetooth, and airport connection for now but would like to know how this PC is connecting and how to eliminate this in the future.
    Have seen many posts with this problem, but not a comparable situation as I don't even have wireless router in house - I am hooked in via ethernet but use airport when out of my studio.
    Just want a simple, if temporary solution until I can learn more about network security - any wisdom out there? I would so appreciate it, thanks!

    Hi
    I think by Shared you mean the Shared Section in the Finder Window's Sidebar. If that's the case what you're seeing is probably because
    (1) either you've joined an unsecured wireless network or
    (2) your wireless network is unsecured and that person has joined your network
    (3) both of you are using a freely available public wireless network
    (4) your network is secured but has a weak password
    (5) your network is secured with a password which has been broken
    (6) your network is secured but you've given the user you're seeing the password
    If (4) and (5) is the case change the password. If (6) perhaps you've forgetten? Perhaps the PC you're 'seeing' is named in a way you don't recognize as the person you gave the password to?
    If (2) force users to require a password to join your network or disable the option that broadcasts your wireless network's name. That way no-one 'sees' your wireless network 'announcing' itself as such. The only way to join the network would be to manually enter its name which you would have to know in the first place. You do this using your gateway/router's web interface. Assuming your gateway/router supports this option?
    If (1) you're probably looking at the person's PC whom the network belongs to.
    As long as you don't enable Personal File Sharing, unrestricted SSH access or VNC then at best all they can do is 'see' another PC that happens to be connected to the same network. If you have enabled Personal File Sharing 'beef' up your passwords and begin to restrict which user/account is allowed access to Public Folders. Can you actually connect to that PC? Or is all you can do is 'see' it?
    I actually don't see any of this as a 'problem'. For me this is how this part of the OS is supposed to work. Macs announce/broadcast themselves on P2P Networks using a variety of protocols - Bonjour/Rendezvous, NetBios etc. PCs do something similar. You may also find the PC that you can 'see' is not actually a PC but a Router/Gateway/Firewall. Some Thompson Gateways for example broadcast themselves as a 'PC'.
    Tony

  • HOW DO I GET THE FIREFOX WINDOW TO APPEAR SO I CAN FOLLOW YOUR DIRCTIONS? WHEN I CLICK ON THE ICON THERE IS NO "0PTIONS" IN THE DROP DOWN MENU.

    All of the instructions seem to ask me to start with the firefox window. I cant get this to appear. As an alternate, I have opened Mozilla and clicked on the icon in the upper left corner, but no Options" appears in the drop down menu. (the only items listd are restore, size, etc). What can I do?

    You most likely have the menu bar visible instead of the Firefox button, [[Display the Firefox button menu instead of the menu toolbar]]
    BTW, update to Firefox 22 [[Update Firefox to the latest version]]

  • Livecycle: Is there a way to add a new page by choosing what kind of page from a drop down menu

    I am creating a form to be used for patient care,
    I have multiple pages, the first is an information page, second is an evaluation page, the third is a treatment page.
    I am hoping to add a drop down menu (Add New Page) with the following in it:
    1. Treatment Note
    2. Discharge Summary
    3. Treatment Order
    4. Progress Note
    Each of the selections corresponds to a specific page layout.
         ie:  1.  Vitals, signature, etc.
               2. Previous information compared to current status
              3.  Ordering equipment etc.
              4. Updating referral source.
    I am new to this so any help is appreciated, assume I know very little to begin with so specifics on how to create your recommendations are greatly appreciated.
    Cheers

    The attached contains a drop-down that sets focus on a text field on the applicable page. The effect is to navigate to the page. The exit event looks like this...
    //form1.page1.subform1.pageSelection::exit - (JavaScript, client)
    switch (this.rawValue) {
    case "Treatment Note":
       xfa.host.setFocus(form1.page2.subform1.someField);
       break;
    case "Discharge Summary":
       xfa.host.setFocus(form1.page3.subform1.someField);
       break;
    case "Treatment Order":
       xfa.host.setFocus(form1.page4.subform1.someField);
       break;
    case "Progress Note":
       xfa.host.setFocus(form1.page5.subform1.someField);
       break;
    default:
       break;
    There are a variety of ways this could be accomplished.
    Steve

  • On the Firefox drop down menu for Firefox 4, the tab for cut, copy and paste is not highlighted. Is there another way for me to include this on the Firefox start page?

    I have Firefox 4. In the Firefox drop down menu, there is an option to cut, copy and paste but it is not highlighted. Please tell me how to highlight this link. Or is there a way to have a cut copy and paste tab?

    Those links in the Edit menu are only highlighted if there is something to do:<br />
    Paste should be enabled if the clipboard has data placed on it by a previous Copy or Cut and you have set focus on a text area or field that allows to paste that data.
    Copy works if some text is selected.

  • Is there a way to get ACR to appear in the "Open With" drop down menu?

    Hi,
    Is there a way to get Adobe Camera Raw to appear directly along with CS3 in the Mac's ( OS 10.4.11) "Open With" drop down menu?

    If you installed ACR it in the right place, and are targeting the kind of file that ACR can handle, it should be there.
    I have found that there are certain Tiff Scans that won't open in ACR but if you just Duplicate them in Bridge, and then target the Duplicate, they will then open in ACR.
    At least they do so for me.

  • In Itunes 12 is there a way to view search results in the playlist view rather than the drop down menu?

    When searching for a song title, an artist etc in Itunes 12 it shows the results via a tiny consolidated drop down menu, however in previous version of Itunes search results would be displayed in the main playlist view. I seriously dislike the search drop down view because A) it only shows limited results B) It shows artwork C) It is confusing when trying to search your playlist when you are trying to organize your library.
    If anyone knows a way to change the search view preference please let me know how or advise me on how to suggest to Apple that they change it back or give people the option to choose which search result view they would like to use.
    Thanks.

    If you disable the Search Entire Library option (available in the dropdown to the left of the search box) iTunes 12 will not show the search results in a dropdown but will immediately go to a filtered version of your current view.  With the Search Entire Library option enabled, you can still get to this filtered view by clicking on the first entry in the drop down, which will say "Show <search string> in Library" or "Show <search string> in <playlist>" depending on where you start the search from.
    There are some inconsistencies in the search behavior, most notably that where you have the Search Entire Library option enabled and search within a playlist the dropdown will show all matches in you complete library (whether in your playlist or not), whereas the first entry in the dropdown just takes you to the filtered playlist view.
    You can use https://www.apple.com/feedback/itunesapp.html to provide input to developers about bugs, enhancement requests, etc.

  • Where is firefox located on my desktop to double click on it. I need to go to tool drop down menu to remove alexa toolbar?

    I want to remove alexa toolbar. I did not have it installed as a program, so I cannot remove it there. i need to know where to find firefox to double click it and and click on drop down menu to remove alexa. I do not know how to do this step by step.

    archhe, do you see a bar at the top of your Firefox window containing items like '''File''', '''Edit''', '''View''' etc? The '''Tools''' item is on the same bar towards the right side.
    In case you are not able to view this bar, do the following: press the '''Alt''' key on your keyboard. Keeping this pressed, type the following keys in this order: V T M.
    I hope you should be able to view the '''Tools''' item now on the top bar of Firefox.

Maybe you are looking for

  • SAP XI: How To Write Shell Script And use it in File Adapter On XI Server

    Hi, I want to split file at sender side in XI using Shell Script and then after i want to do Mapping. Can anyone tell me what exactly it means "write a script in UNIX shell on XI SERVER"? Regards, Akshay.

  • Time out settings in a proxy

    Hi , I am calling a Proxy from a Function module... now the requirement is: if proxy exceeds the set  execution time, we need to kill the process and send a message to the user. Can we set a time out in Proxy? If so, Please let me know the configurat

  • Outline Agreement not getting link to PR from Work Order

    Hi All When creating purchase requisitions from a work order that reference an existing outline agreement the outline agreement is not linking to the purchase requisition (not visible from PR at all). The service masters are however being successfull

  • Assignment of G/L on Maintenance Order Internal Component

    Hi, I can specify G/L of my choice on Maintenance Order (PM Maintenance Order) for external components ( Non Stock Items) but unable to do so for Internal Components(Stock Items). Is there any configuration which could allow me to specify G/L of my c

  • Why do the icons become large

    Why do the icons become large on the ipad mini and how do you fix the issue?