How can I Disable or Remove the entire Bookmarks Toolbar Feature?

I really LOVE Firefox. With over thirty years into the desktop computing industry, I can honestly say it's one of the most impressive development efforts I've seen. Thank you, seriously, all of you, everyone who has worked toward creating, maintaining and enabling the presence of this truly wonderful application!
I have never sought specific help with this one thing, and was just reminded a moment ago, how much better Firefox would be (for me) if I could completely disable/ uninstall the entire Bookmarks Toolbar _feature_. By the time this feature appeared, I had already developed and established my own system for filing bookmarks into a preset folder hierarchy. This works -much- better (for me) and I have no use for the Bookmarks Toolbar. It's always in my way, takes up screen space, and just really annoys the fecal-stuffin's out of me. Kinda reminds me of the -worst- things I remember of M$.
Once the feature is (somehow) killed, I'd like to then...
...Remove that folder from Bookmarks (menu, folder, etc -- all of it), and preferably, prevent it ever reappearing (setting 'lock'?).
I realize this -might- be something not currently 'doable' by standard means. If that should be the case, can someone forward this message into the 'feature request' queue for me? I truly would appreciate that.
Thank you in advance, and THANK YOU for Firefox!!!

Wow, cor-el... Did you -intend- your reply to be inane, inappropriate and completely inapplicable?
How would that possibly do what I asked?
You -might- consider '''''reading''''' the question, -=before=- you reply. And it's really okay to NOT REPLY if you just don't know. Just an idea.
Feel better, real soon.

Similar Messages

  • HT201304 how can i disable or remove the private browsing in safari on my childs iphone

    how can i disable or remove the private browsing in safari on my childs iphone

    By voiding your warranty and hacking it. There may be other fixes though. Try resetting network settings in settings>general>reset. If that doesn't work try a hard reset. If that doesn't work then backup, restore as new, then from backup

  • How can I disable or remove the meebo bar in safari5.1.7

    How can disable or remove the meebo bar in safari 5.1.7?

    The information in this thread may help:
    https://discussions.apple.com/message/15348397#15348397

  • How can i disable '+' icon in the toolbar

    Hi,
    I have one requirement i.e i want to disable '+' button[File-->New] in the toolbar.This button creates a record when i click on this.
    My block(Updatable block) should allows updations and insertions so i can't make insert_allowed and update_allowed property to "NO".I tried with
    APP_SPECIAL2.ENABLE('FILE.NEW',PROPERTY_OFF); but the + icon is still enabled when i write above code.
    How can i disable '+' icon in the toolbar
    Thanks in advance,

    This is eBusiness-related, maybe ask your question in the EBusiness-forum, maybe here OA Framework

  • How can I select and enlarge the entire doc,ge on a page, reducing the surrounding boarder.  I can move the difference text boxes about independently of each other but the outer most boarders of the main template block appear to be fixed.

    How can I select adn enlarge the entire document/image on a page, reducing the the surrounding boarder?  I can move the different text and image boxes around independently of each other but the outer most boarders of the main template block appear to be fixed.  I thought I would be able to enlarge or reduce my document from 'page layout' but this does not seem possible.

    Inspector > Document > Document Margins
    The word is border. Boarders are the Harry Potters of this world.
    Peter

  • How can I erase (or remove) the hard drive from a dead Time Capsule?

    How can I erase (or remove) the hard drive from a dead Time Capsule?

    I found this having had the same problem...
    http://forums.macrumors.com/showthread.php?t=553818
    Having removed the hard drive I'm finding I can't reformat it. I manage to mount the HD but Disk Utility crashes when trying to format (HD attached to Mac via Newer Tech. SATA cables to USB) and causes what I think is a kernal panic on my Mac which hard crashes. I see 3 partitions when attempting to mount one of which is AFP. Anyone got any ideas about how to do this? I've dug around but the only progress I've made is to note others have had to work around ACL's when replacing the logic board of the TC. Not sure if this even relates to the problem. However the tool for doing this seems to have been removed from SL. (Forum references to this procedure all relate to 10.5).

  • Since 2012 I have Photoshop Elements always worked without any problem, however now the language is suddenly German how can this be changed, removed the program and re-installed, not working. Program is downloaded and updated via the apple app store?

    Since 2012 I have Photoshop Elements always worked without any problem, however now the language is suddenly German how can this be changed, removed the program and re-installed, not working. Program is downloaded and updated via the apple app store?

    I've done some research on the SQLite database. Whenever Aperture hangs up (like during auto-stack or opening the filter hud) there are thousands of SQLite queries happening. These SQLite queries cause massive file I/O because the database is stored on the disk as 1kb pages. However, the OS is caching the database file; mine's only 12MB. I'm trying to track down some performance numbers for SQLite on osx but having trouble.
    It's starting to look like most of the speed problems are in the libraries that Aperture uses instead of the actual Aperture code. Of course, that doesn't completely let the developers off the hook since they choose to use them in the first place.
    Oh, and if anyone is curious, the database is completely open to queries using the command line sqlite3 tool. Here's the language reference http://www.sqlite.org/lang.html
    Hmm, just found this. Looks like someone else has been playing around in the db http://www.majid.info/mylos/stories/2005/12/01/apertureInternals.html
    Dual 1.8 G5   Mac OS X (10.4.3)   1GB RAM, Sony Artisan Monitor, Sony HC-1 HD Camera

  • How can I disable input on the ALV gridview?

    Hi everybody,
    I'm developing an application and would like for my users to be able to view the data in the ALV grid. Actually the only thing they may be able to do are delete rows from the ALV.
    I set the ALV grid to editmode so you can insert and delete rows. But  how can I disable the Insert functionality without losing the delete functionality?
    Is is possible to just remove or hide the 'add row' button in the toolbar?
    Thanks in advance
    Regards,
    Wouter

    Wouter,
    It is possible to EXCLUDE buttons from the ALV GRID tool bar.  You didn't mention if you were using OO or not, therefore I will assume you are not.
    * In Global Data
    data:
      g_exclude                  TYPE slis_t_extab.
    * somewhere before you call the FM to display ALV
      PERFORM exclude_icons.
    *  You will need to find out the FCODE of your Add Row Icon in the GUI Status being used.
    *      Form  exclude_icons
    FORM exclude_icons.
      APPEND '&ETA' TO g_exclude.     "Details
    *  APPEND '&OUP' TO g_exclude.     "Sort Up
    *  APPEND '&ODN' TO g_exclude.     "Sort Down
      APPEND '&ILT' TO g_exclude.     "Set Filter
      APPEND '&UMC' TO g_exclude.     "Sum
    *  APPEND '&RNT_PREV' TO g_exclude.     "Print preview
    *  APPEND '&VEXCEL' TO g_exclude.     "Excel
    *  APPEND '&RNT_PREV' TO g_exclude.     "Word processing
    *  APPEND '%PC' TO g_exclude.     "Local File
    *  APPEND '%SL' TO g_exclude.     "Mail recepient
      APPEND '&ABC' TO g_exclude.     "ABC Analysis
      APPEND '&GRAPH' TO g_exclude.     "Graphic
    *  APPEND '&OL0' TO g_exclude.     "Change layout
    *  APPEND '&OAD' TO g_exclude.     "Select layout
    *  APPEND '&AVE' TO g_exclude.     "Save Layout
      APPEND '&INFO' TO g_exclude.  "Information
    ENDFORM.                    " exclude_icons
    * When you execute the FM to display...
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program = g_repid
                is_layout          = g_layout
                it_sort            = g_sort[]
                it_events          = g_events[]
                it_fieldcat        = g_fieldcat[]
                i_save             = g_save
                it_excluding       = g_exclude  "<== Need this parameter defined to pass
           TABLES
                t_outtab           = it_out
           EXCEPTIONS
                program_error      = 1
                OTHERS             = 2.

  • How can I disable (not hide) the Boomarks Toolbar?

    I have installed the "Multirow Bookmarks Toolbar Plus 1.2" extension. In the Firefox customize toolbars box I dragged the Firefox bookmarks toolbar to the right of my home button instead of where it normally is. I then Right-clicked on the toolbar and unticked "Bookmarks Toolbar".
    However whenever I restart Firefox the toolbar re-appears. How can I disable it from appearing?

    My extensions don't work on Firefox 12 so that doesn't help me.
    I should also point out that if I format my hard drive and re-install Windows and Firefox 5 then I don't get this problem but that's a lot of hassle.
    I only get this problem when I install a new version of Firefox when I already have a previous version installed.
    So before installing the new version I uninstalled Firefox and selected the option to delete my settings. I then checked my profile folder to make sure nothing was there. I then reinstalled Firefox again and all the same extensions with the same settings as before and I still get this problem.
    So it's quite disturbing that I deleted all traces of Firefox yet I get this problem again which makes me think that not everything was deleted.

  • How can I request to remove the sign "explicit"

    Dear all,
    I've uploaded a Song in iTunes Store. Apple has marked my song with the "signature" EXPLICIT. How can I request to remove this Explicit? My Song is not aggressive, nothing with sex & drugs, but it's a language they don't know. It's a very old language: Aramaic (Wiki: http://en.wikipedia.org/wiki/Aramaic_language). The song is about the love and about joy and something like this, but with the signature EXPLICIT it shows like a killer-song hehe
    It will be great if someone can help me or give me a contact to write them an email.
    Many thanks and kind regards.

    Once you login to Course Manager, a link to the Content / Services Agreement is provided on the bottom-right of the page.

  • How can I disable or enable the keyboard and fix mouse's position with LaBVIEW?

    Hi,
    1. I'ld like to disable or enable the keyboard with LabVIEW.
    2. I'ld like to fix the mouse's position with LabVIEW.
    How can I do it?
    Please advise.
    Regards
    Hork

    For the keyboard, you could create a filtering event and discard the key change.
    What do you mean by "fix the mouse position"? Warping or stalling the mouse is very bad UI form., the operator should always be in control of the cursor position. Could you explain what you want to do?
    LabVIEW Champion . Do more with less code and in less time .

  • How can I select and remove the football net behind the goalkeeper with Photoshop CS5?

    Hello,
    Could you please help me with the following case. I have a photo of a football game and I would like to select and remove the football (soccer) net behind the goalkeeper. Do you know what is the procedure for selecting and removing of the net so as to "clear" the goal showing only the goalkeeper in the frame of the goal?
    Thank you in advance,
    Petar
    Product: Photoshop CS5

    Hi Petar,
    You're in luck. Photoshop CS5 was the first version to come with Content Aware Fill. You can use this to seamlessly erase objects, like your net. Try taking a look at this video, which should help you do just that:

  • TS4006 How can I remotely turn on the find my iPhone feature on my phone

    How can I remotely turn on find my iPhone feature

    You cannot...you must be on the iPhone to turn it on, there are not those kinds of remote controls.

  • Installed Firefox 4 on Mac OS X 10.6.7. (1) How can I delete icons it added to bookmarks toolbar so they'll all fit again? (2) Where is the Organize Bookmarks tool now?

    Don't know what details you might want.

    I'm not sure about the 'icons' added to bookmarks toolbars, but you can control your bookmarks using "Show All Bookmarks". That replaced 'Organize Bookmarks'. It will open the bookmark library & you should be able to rearrange, add, delete, etc from here.

  • Can I disable (or remove) the "migration administrator" account?

    I installed a SBS 2011 server about two years ago - and migrated from an old SBS 2003 server.
    In the process of migration, a "migration administrator" account was created.  Now, I see it in my list of users and was wondering if I missed a step somewhere that should have deleted (or disabled) this account.
    Is it safe to disable?

    Its always a good practice to Disable a NON required account. You can read the description of the user account "If Any" . If its an account that is apart from BuiltInAdministrator, go ahead and delete or disable.
    Normally in SBS 2008 and SBS 2011 Domain "Administrator" account as it is disabled by default. This is for security reasons as the most common account for hackers to use when launching an attack on your server is the default administrator account
    name. If you need the "Administrator" account for some reason, though I don't recommend using it, it is in AD under the Uses OU not the MyBusiness\Users\SBSUsers OU. You will need to enable it, and assign a password.
    Binu Kumar - MCP, MCITP, MCTS , MBA - IT , Director Aarbin Technology Pvt Ltd - Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Maybe you are looking for

  • Algning new folder with other data columns in a document library

    Hi All, I have created an InfoPath form that used to create a new form & a new document library and the description to that folder. Now my InfoPath form has some text boxes to store data. Also there is an attachment control to upload documents. These

  • Nead Eax so I can get 5.1 out of my speake

    I just purcahsed a 5. Li've! soundcard off ebay and cannot get 5. sound out of my speakers because it didn't come with the eax control panel. I can't find a download for it anywhere. Anybody have any ideas. I am also told that I need creative mediace

  • Combining AFS schedule lines into one Item

    HI, Due to certain reasons the item in an order splits into two schedule lines. When the order is delivered, each schedule line gets copied as separate batch item though they are of the same grid value. Is there a way where we can make the order sche

  • Artwork for midi files in iTunes

    I have many midi files in my itunes that I output to midi instruments and a piano. I know how to put album artwork with an mp3 or other formats in itunes and haven't had any problems there but I can't get album artwork to work with a SMF (standard mi

  • Time Machine/Capsule Continually Failing Back-up

    Hi, I have been having this issue for weeks now but whenever I attempt to back up my iMac (Mid 2011 Model, with Mountian Lion 10.8.3) it constantly fails and I have been running around these forums like crazy trying to find a solution. I bought my Ti