In firefox 4, bookmarks drop down menu dissapeared next to the home buttom, but appears to be there when customizing, when clicking done, is dissapears

My bookmark drop down menu disappeared next to the home button on firefox 4. When I right click customize, the bookmark drop down appears on menu bar, but when clicking done, it's gone again. I went into customize and removed it then put it back. When clicking done, it is gone again and will not appear. It happened when I click tools, options, tabs, and uncheck open new windows in a new tab, then clicked ok

I had this same problem, using Ubuntu 11.04, here is the solution, pretty simple after trying 800 things to find the solution. Go to your addons, disable the addon called "global menu bar integration", then if your menubar is still viewable, disable it, and then you can see the drop down menu for your bookmarks. If you don't have Ubuntu then you just need to disable your menubar directly (the one with File, Edit, View, etc).

Similar Messages

  • A box with a blue outline appeared in my bookmark drop-down menu. I can't get rid of it, and it obstructs the view of the bookmarks as I scroll up or down. Help!

    I was trying to bookmark a page, using the "Choose" menu in the bookmarks. I must have touched a key by accident, and a box with a blue outline & the name of one of my folders appeared in my bookmark drop-down menu. At first the box contained the folder name, then I was trying to delete the box, and erase the name, thinking it might get rid of the box, but it didn't. I can't get rid of this box! It obstructs the view of what is underneath. It stays in the same position as I scroll up & down in the drop-down menu, and it hides what is underneath. Please help me get rid of this box. It is driving me crazy! Thanks!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • My unsorted bookmarks folder does not appear in the bookmarks drop down menu.

    My unsorted bookmarks folder does not appear in the bookmarks drop down menu. I can only reach it though Organize Bookmarks function. How do I get it into the bookmarks tree?

    Unsorted Bookmarks Folder Menu: https://addons.mozilla.org/firefox/addon/7269/

  • I have lost all of my bookmarks from the drop-down menu. It says it is empty, but never have I deleted them. And when I bookmark a page it does not save it. Please help

    Question
    I have lost all of my bookmarks from the drop-down menu. It says it is empty, but never have I deleted them. And when I bookmark a page it does not save it. Please help

    Ok this is bizzare!
    Thank you for your response, I went throught each and every step without any luck, even got the recovery programme, and painstakingly tried to sift through all that mumbojumbo to find what i needed. finally found the bookmark bit, but it had been fully overwritten :(, so on reading about previous ff versions, found the sqlite thingys, and they were relatively unscathed(partly written over, but saveable apparently TG), saved them to adiff drive, amongst other possibly good folders. Then looked up how to install them, and it said to close FF, and install to profile folder.
    So i tried to close FF, and the original problem from a few days ago, where it asked me if 'i was sure i wanted to close this window as it has X tabs open', popped up again. This is where 'open blank page' selection was set, over 'open previous tabs'. Wanting to save that info on how to sort out these friggin files, I reset the Option to 'open previous tabs', and closed FF. After unsucessfully searching for the profile folder on my laptop, i opened FF intending to search online for where i could find said folder.
    AND BANG, surprise surprise, the FF I had just closed with only tabs open about finding out what the heck to do, had disappeared, and instead my original saved tabs were up, and my bookmarks are there..... I am gobsmacked! what the heck just happened there???
    I have made 3 back up in different folders now, of those friggin bookmarks. I am weary now tho of shutting it all down.... what if its back to the other pages I had with no bookmarks, tomorrow :(

  • CSS Drop down menu; how to align the right edge of drop down and parent menu?

    Hello everyone,
    I have a drop-down menu that is currently working well.
    The only change I need to make is to have the right edge of the  drop-down menu to align with the right edge of the parent menu. When you  hover over the menu, it currently "drops" down and to the right, with  the left edges aligned.
    I want the menu to "drop" down and to the left, so the right edges are aligned.
    I have tried fiddling with floats and absolute/relative positioning. I'm not sure what needs to be changed.
    Any help you can provide is greatly appreciated! I'm learning via "cut and paste", so please go easy on any terminology you may use.
    Thank you!
    Here is my code:
    .chromestyle{
         width: 100%;
         font-weight: bold;
         float: left;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width: 100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: right; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    width: 200px;
    visibility: hidden;
    .dropmenudiv a{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 2px 5px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;

    Try this:
    .chromestyle{
         font-weight: bold;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width:100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: left; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    visibility: hidden;
    text-align:left;
    .dropmenudiv a{
    width: auto;
    display: block;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 3px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when i select the customer?

    I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when I select the customer?
    iselect the customer?

    Hi bazza,
    We won't be able to put the address from a formula into the same cell that you enter the customer's name. We can put the address in the cell under the customers name.
    First let's take James advice and concatenate the address in the address table.
    Here is the formula in G2
    =CONCATENATE(B2&"
    ",C2&"
    ",D2&"
    ",E2)
    It shows this way because after I clicked on B2 and typed [&"] (no brackets) I typed option-return
    This gives you your new line. Then I typed the closing ". I repeated this for the rest of the address.
    Next we want to bring this to your order sheet. I prefer using the two formulas OFFSET and MATCH instead of VLOOKUP.
    base tells OFFSETwhere to start counting from. Click A1.
    row-offset is for the row. we will use MATCH() -1 to give us the row.
    What MATCH does is give you the row number where something is found and you can specify an exact match. I usually construct the MATCH formula first and then cut and paste it into OFFSET. MATCH looks like this: MATCH(A2,Table 1::A,0). A2 is what we are looking for, Table 1A::A is where we are looking (the entire column A), and 0 means we want an exact match. Can you see it inside the OFFSET formula? Notice that we had to subtract 1 from its result.
    column-offset tells OFFSET which column A=0 so we want 6.
    we ignore "rows", "colomns" we don't need them.
    If this seems like too much, just break it down into small pieces.
    quinn

  • I updated my 2009 Mac to Mountain Lion yesterday but cannot add photos from my iPhoto library to contacts anymore. Drop down menu only shows "default, recent and camera" but I cannot get to iPhoto library.

    I upgraded my 2009 Mac to Mountain Lion yesterday but cannot add photos from my iPhoto library to contacts anymore. Drop down menu only shows "default, recent and camera" but I cannot get to iPhoto library. Help stated to choose Faces but I don't even get that far. How do I fix. Still works on iPad but not on Mac.

    When you have iPhoto and Contacts open and try to drag a picture for iPhoto to the Contacts photo frame do you get a + symbol? if not you should!  from there the the pop menu should appear and then you can select the picture and click on done
    Sample movie on how to

  • My iPhoto "share" drop down menu no longer has the burn dvd option.  What do I do?

    My iPhoto "share" drop down menu no longer has the burn dvd option.  What do I do?

    That feature was dropped with iPhoto 9.  Select the photos you want to burn to disk, export to a folder on the Desktop via the File ➙ Export ➙ File Export  menu, insert a blank disk in the optical dirive, drag the folder onto the disk icon and drag it to the Trash bin to burm.
    OT

  • Firefox 13.0.1 shows my menu bar split over two lines, wasting a lot of screen space. Also, my bookmarks drop-down menu in the bookmarks toolbar is now gone,

    Website title and the menu bar used to be on the same top line (I think) - or maybe the website title didn't show on the top line because it was already showing on the tab bar. But now, with Firefox 13.0.1, I have five lines of stuff (from the top, they are: website title; menu bar (File, Edit, etc.); Tabs line; Navigation toolbar/line; bookmarks toolbar) before I get to my actual webpage screen. It used to be four lines, which was tolerable.
    Also, the bookmarks drop-down has disappeared from the bookmarks toolbar - I used to have it on the far right of the bookmarks toolbar.

    Hello again,
    Getting rid of the menu toolbar, the tabs returned to the top and the bookmarks drop-down returned to the right-side of the bookmarks toolbar. I don't know how I had changed the settings - possibly my toddler fiddling with the keyboard..
    Thanks for trying to help!

  • All my bookmarks have disapered, tried to recover them as per the instructions on the help site, but no good. And now firefox wont let me make anymore bookmarks, says they're bookmarked but nothing in bookmark drop down menu, please help

    All my bookmarks suddenly disapered, tried recovering them as per the instructions on the help page, but no matter what date i try it fails saying no backup! Now firefox says bookmark added when i try to add them but nothing appears in the bookmarks drop down mene, so i cant even add my old bookmarks manually, driving me mad please help.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Updated to Firefox 19 from 3.6 and want to contol the width of the bookmark drop down menu

    I have a bookmark drop down that is as wide as the screen. Because of this I assume that this causes the folders to open on the left instead of the right.
    Is there something in about:con fig that I can change to control the width

    Does one of your bookmarks has an outrageously long name that you might be able to shorten?
    I don't think there is anything in about:config that governs the width of the menu or drop-down. You might need to add a style rule to a userChrome.css file or use the Stylish extension and a userstyle. In order to get specific, could you indicate whether the problem is with the Bookmarks menu on the menu bar, or the drop-down control on the right-hand end of the Bookmarks Toolbar?

  • Bookmarks disappeared in bookmarks drop down menu and bookmarks toolbar disappeared too after upgrading

    I still have all my bookmarks so they are not lost (I can find them under 'bookmarks'>'Edit bookmarks' and also when I put them in the left side windowframe by clicking 'View'>'Sidebar'>'Bookmarks'
    I saw them appear once again in the dropdown menu but now they're gone again.
    The Firefox help page suggest to go to the 'add ons window' and select 'Extentions'>'Torbutten' but I don't even have that. They say that if you don't find the button, that means the torbutton is not installed. And then they leave you without another possibility. But I think that's only for when your bookmarks are totally lost anyway.
    I always use the drop down menu and the bookmarks toolbar so would love to get it back. Adding, erasing and moving the bookmarks in the 'edit bookmarks' window all works just fine.

    This issue can also be caused by a missing "Bookmarks Toolbar items" on the Bookmarks Toolbar.
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button

  • I am trying to import bookmarks from google account. Your drop down menu does not have the "import" option. How can I do this?

    Your instructions for importing bookmarks/favorites are to click the top left Firefox button and select "import" to start the process. I don't have that option, there is not "import" in the drop down menu. How can I import bookmarks into Firefox?

    You will still find it in the File menu in the Firefox 5 version that you are using.<br />
    If Firefox 7 is has been moved to the Bookmarks Manager.
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    If you managed the bookmarks via the Google toolbar on the Google server then see:
    * http://www.google.com/bookmarks

  • There is no 'bookmarks manager on the bookmark drop down menu

    the firefox help tutorial says , quote 'to open bookmark manager select Bookmarks >manage bookmarks'. It shows 'manage bookmarks' immediately below 'bookmark this page'. The drop down menu on my firefox does not have the 'manage bookmarks' instruction on the menu. I am running firefox 3.6/win vista. and I am finding it difficult to organize my bookmarks .Any help would be much appreciated.

    Hello! I have no "manage bookmarks" nor "Organize Bookmarks" on Firefox 4.0.1 There are only: "bookmark this page", "subscribe to this page", "set as speed dial" and "show all bookmarks". Can anybody help me?
    Wow, sorry, I found it, it`s just "show all bookmarks".

  • How do I remove the autocomplete drop-down menu from textboxs, not the awesome bar?

    I like having the drop-down menu from the url, but the autocomplete option for textboxs within like when I type my username and it pops up with all of the ones that has been used on that site are really annoying. How do I get rid for the latter? I didn't have this before I upgraded to Firefox, and now I can't get rid of it. Fyi, I'm rather tech inept, don't use complicated comp sci words please!

    You can use History > 'Clear Recent History" to clear already saved form data.
    *https://support.mozilla.org/kb/Clear+Recent+History
    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    See also "Prevent Firefox from automatically completing URLs":
    *https://support.mozilla.org/kb/search-your-bookmarks-history-and-tabs-awesome-bar

Maybe you are looking for

  • # appearing in standard text.

    Hello, I have created a standard text and using the text in a smartform. There are many words with apostrope in them. For eg consumer's. But when it is printed in the smartform , the text is printed as consumer#s. Other standard texts which contains

  • SRM7 - eSOA service documentation

    Hi all gurus, we're using SRM7 on our testing system and we enabled distribution of contracts to the backend test system using the new eSOA technology. I'm completely new to this kind of procedure; we've seen that the contract distributed are definit

  • File system external data upload

    Hi experts,         Is there any tool like File system external data upload, to upload the data from the  why is it used what are the attributes to be given.

  • When viewing a document

    When viewing a document my screen goes dim after 2-3 minuetes if I don't touch anything. I'd like it to stay lit for 10-15 minuetes if possible.

  • Can we track or get the list of sites and subnets deleted from ActiveDirectory?

    Can we track or get the list of sites and subnets deleted from Active Directory?