Top menu items can't be removed

I'm trying to remove the remove the Backblaze icon from my top menu bar. I've thrown away and cancelled Backblaze. Clicking on command and then trying to pull out the icon doesn't work. Clicking only launches a backblaze menu. Moving apple apps from the top menu works fine, but I've noticed that several other user applications won't budge when I try to move/remove them. While this is not a serious operational problem, it's a point of clutter and the fact that it won't move is a control issue for me. thanks!

I also ran the Uninstaller with no luck. Then i read more online . . .
You actually have to go into the /Library/Backblaze folder and use the uninstaller there,
Running this uninstaller actually removed the files associated and removed the top menu icon.
All gone

Similar Messages

  • How do I make top menu item unclickable but drop downs are clickable?

    I have drop down menu with the top menu item titled "Renderings" and the drop down from that are serveral types of renderings. I don't want the viewer to be taken to a page called "Renderings" when they click that, but I do what them to choose one of the drop down items. How can I make the top most menu item "Renderings" non-clickable? Thank you!

    Right mouse click on the top level page in  your plan view and then mark it as 'Include Without Hyperlink'

  • How to add vertical stroke to between top menu items?

    I have a horizontal Spry menu bar. How to add a vertical stroke between menu top items?
    BUT NOT outermost left and outermost right. Only to BETWEEN top menu items.
    In html file I tried this:
      <div id="main_menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#">Products</a></li>
          <li class=stroke></li>
          <li><a href="#">Services</a></li>
          <li class=stroke></li>
          <li><a href="#">News</a></li>
          <li class=stroke></li>
          <li><a href="#">Contact</a></li>
         </ul>
       </div>
    And in CSS-file I made a style:
    #MenuBar1 .stroke
    display: block;
    width: 1px;
    height: 16px;
    background-image: url(../images/gui/vertical_stroke.png);
    background-repeat: no-repeat;
    In Safari this Spry menu bar work fine. But stop working in Firefox and IE.
    Also DW4 warning me in properties panel that:
    "This menu bar is missing some important tags. Go to Code view and and make sure that each menu item contains an <a> tag."
    What is correct method to do this?

    In that case you will need to use images.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Untitled</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style>
    ul.MenuBarHorizontal a.line {    background: #EEE url(SpryMenuBarLine.gif) no-repeat 95% 50%; }
    ul.MenuBarHorizontal a.MenuBarItemSubmenu.line{    background: #EEE url(SpryMenuBarDownLine.gif) no-repeat 95% 50%; }
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a class="MenuBarItemSubmenu line" href="#">Item 1</a>
        <ul>
          <li><a href="#">Item 1.1</a></li>
          <li><a href="#">Item 1.2</a></li>
          <li><a href="#">Item 1.3</a></li>
        </ul>
      </li>
      <li><a href="#" class="line">Item 2</a></li>
      <li><a class="MenuBarItemSubmenu line" href="#">Item 3</a>
        <ul>
          <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
            <ul>
              <li><a href="#">Item 3.1.1</a></li>
              <li><a href="#">Item 3.1.2</a></li>
            </ul>
          </li>
          <li><a href="#">Item 3.2</a></li>
          <li><a href="#">Item 3.3</a></li>
        </ul>
      </li>
      <li><a href="#">Item 4</a></li>
    </ul>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    The images look similar to the following
    and
    I hope this helps.
    Ben

  • Contextual menu items remain after Bitcasa removal - why?

    Hello there.
    I'm looking for a solution of Bitcasa context menu items that won't go away. After removing the app they still appear in the Finder context menus. I already searched the usual places like Keyboard Shortcuts, Services, etc. but couldn't find any entry that explains why it is still there.
    Anyone got an idea why I can't remove it?

    Okay. You got me on the wrong foot there. Sorry for being touchy.
    I contacted the Bitcasa support and did everything they wrote on their support pages and more. I even got terminal commands from them to remove everything Bitcasa manually:
    sudo rm -rf /Applications/Bitcasa.app
    rm -f ~/Library/Preferences/com.bitcasa.*
    rm -f ~/Library/Preferences/com.Bitcasa.*
    rm -f /Users/*/Library/Preferences/com.bitcasa.*
    rm -f /Users/*/Library/Preferences/com.Bitcasa.*
    rm -rf ~/Library/Caches/com.bitcasa.*
    rm -r ~/Library/LaunchAgents/com.bitcasa.Bitcasa.plist
    rm -rf ~/Library/Application\ Support/com.bitcasa.*
    The problem seems to be that I actually removed everything identifiable as part of Bitcasa code. And that's the only reason I cant't get rid of this darn menu. I'm not a programmer but I usually know my way around when it comes to apps. What puzzles me is the fact that there seems to no source for this contextual menu item.
    Is that even possible?

  • P7 Menu top menu items

    I have six element in the main menu line.  The line P7PMNav li reads:  float:left; width:16.734%;
    It was originally defined as a width in pixels, which did not show properly on wide screens, such the iMac.  I have adjusted it to %s, but can never get it exactly to fit.
    Is there  perhaps a  better, more elegant, solution?

    The menu is working fine. Sounds like you just need to clear
    your browser
    caches.
    On a different note, you shouldn't set font-size in pixels,
    and you
    shouldn't set it on the LI selector... as it will disable
    text animation.
    Change these rules in your menu style sheet:
    #p7PMnav {
    margin:0;
    padding:0;
    #p7PMnav li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    To this:
    #p7PMnav {
    margin:0;
    padding:0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1em;
    #p7PMnav li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    Note, I am answering this post instead of the email you sent
    to our support
    address, as there has been a problem in the past with our
    emails not getting
    to you for one reason or another.
    Al Sparber - PVII
    http://www.projectseven.com
    Fully Automated Menu Systems | Galleries | Widgets
    http://www.projectseven.com/go/Elevators
    "Karlhevera" <[email protected]> wrote in
    message
    news:g82gdk$ivg$[email protected]..
    >I have removed the 'Forum' option from the top menu. The
    code is in my
    >library
    > and whole site was updated with the deletions.
    >
    > I adjusted the top menu width, so that it would look OK.
    When tested
    > locally,
    > it all looked OK in E7, Firefox and Safari.
    >
    > However, when I uploaded all the pages, it looked and
    worked OK in E7. In
    > Safari, the old 'Forum' still showed and in Firefox the
    menu was shorter,
    > ie
    > less the deleted Forum element.
    >
    > What adjustments do I have to make for it to show OK?
    >
    > you may see it at
    http://www.gardensoflondon.co.uk
    >
    >

  • How a menu item can read the parameter from a Form module and ....

    I would like to specify the menu item to go_block from a Form module, or even open window, reading parameters.
    But there is an Error says "CANNOT CALL LINK-IN FORM from Form builder"
    How to make it works??
    Plesae HELP~~~~~

    Dear Friend,
    There is one Procedure by which you can get the value of the paramtere passed to the form.. this procedure is NAME_IN...
    Hope this will solve your problem..
    Ok
    Email me when your problem is solved...
    My email is "[email protected]"
    Regards
    Shan

  • How to have some top level menu items not be hyperlinks

    I have a navigation band where 5 of the 6 top level items need to NOT be hyperlinks but simply "category titles" that you mouseover to display the submenu - which are the links to web pages.
    An example of this is on the Amazon.com home page - the items under "Shop All Departments" has categories that are not clickable, but when you mouseover display the clickable submenu.
    Is it possible to customize some but not all of the top menu items and how?
    What do I need to modify in the CSS so that the top "category title" looks/behave the submenu (same font color/bgcolor changes) but no active hyperlink?

    Here is a link to my pagewhere I am testing the navigation. Currently there is only this one page and I have <a href="#"> for the links.
    The only menu item that should be clickable in the top level is "Contact"
    Everything in the second and third level (Events > Research >...) needs to be clickable
    Everything is working as I want except that "Research" needs to be clickable
    - and I would like to have the clickable item text be underline when in the hover state but I want to get the base navigation working first
    The closest matching code I found in the CSS is:
    #MenuBar1 li .MenuBarItemSubmenu,
    #MenuBar1 li ul li .MenuBarItemSubmenu {
        cursor: default;
    If I remove this, all the top level items become clickable. Let me know if there is other information you need. I super appreciate your help with this!

  • Hi. I've added a new page to my iWeb '08 version 2.0.4 website but can't seem to select the top menu pages to make a rollover color change. I can select them on the original pages. What am I doing wrong?

    Hi. I've added a new page to my iWeb '08 version 2.0.4 website, but can't seem to select the top menu items to make a rollover color change. I can select them on the original pages. What am I forgetting to do?

    Old Toad has a tutorial about changing the colors in the iWeb default menu...
    http://oldtoadstutorials.net/No.24.html
    If you want your website to be found by search engines you would be better to follow Ethmoid's suggestion of creating your own navigation...
    http://www.iwebformusicians.com/iWeb/Navigation.html

  • Spry Menu Bar - Different Background Image Wanted for menu items

    Hi, I've looked everywhere for help with this and just haven't found any answers yet ...
    I want my Dreamweaver CS5.5 menu to look like this design I've done in PhotoShop ...
    It's a simple one level list with no sub-levels.
    Everything is good, except I can only set one background image for all the menu items at this level.
    I want the first, last, and all the middle, menu items to use different background images.
    I have no idea where or how to insert the code to set a different background image for each individual menu item ...
    I know I could use images set one on top another in a column with rollover image swop, but the spry menu opens the door for dynamic content so I'm keen to get it working.
    Manchester city council has a great example of this style of menu design working at - http://www.manchester.gov.uk/
    They've got funky indenting of the text as well.
    ~~~~~~
    This is the code for my menu list ...
      <div class="sidebar1">
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="#">Home</a></li>
          <li><a href="#">News</a></li>
          <li><a href="#">Groups</a></li>
          <li><a href="#">Events</a></li>
          <li><a href="#">About</a></li>
          <li><a href="#">Contact</a></li>
             <li><a href="#">Help</a></li>
        </ul>
      </div>
    This is how I set the background image (but I can only define one image) ...
    I set the image background to "Menu-Nav-Bar-Pic-Top-v1-w170px-h32px.jpg" through ...
    CSS Styles
    SpryMenuBarVertical.css
    ul.MenuBarVertical a
    I then select the background category
    and browse to the image file.
    doing this changes my CSS code as follows ...
    ul.MenuBarVertical li
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 170px;
        margin-top: 4px;
        margin-bottom: 4px;
        background: url(/Images/Menu-Nav-Bar-Pic-Top-v1-w170px-h32px.jpg);
    ul.MenuBarVertical ul
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 170px;
        left: -1000em;
        top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 95%;
        background: url(/Images/Menu-Nav-Bar-Pic-Top-v1-w170px-h32px.jpg);
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        padding: 0.5em 0.75em;
        color: #0000;
        text-decoration: none;
        font: normal 12px Verdana, Geneva, sans-serif;
        background: #EEE url(/Images/Menu-Nav-Bar-Pic-Top-v1-w170px-h32px.jpg);
    ~~~~~~
    These are the three images I want to apply to the top middle and bottom menu items :
    Top menu item background image - "Menu-Nav-Bar-Pic-Top-v1-w170px-h32px.jpg"
    Middle menu items background image - "Menu-Nav-Bar-Pic-Mid-v1-w170px-h32px.jpg"
    Bottom menu item background image - "Menu-Nav-Bar-Pic-Bot-v1-w170px-h32px.jpg"
    ~~~~~~
    As I am unable to set the menu items individually, this is how the menu looks like on my website at the moment ...
    ~~~~~~
    So near yet so far ! I'm hapy with the verdana font, the image size and spacing, but the background images I just can't set them right.
    I'd really appreciate any help on this as I'm out of ideas.
    Thank you.

    The easiest way is to use pseudo elements.
    To style the first and last menu items ifferently to the rest, merely add :first-child and :last-child respectivly as follows
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css">
    <style>
    ul.MenuBarVertical li:first-child a {
        background-color: red;
        color: white;
    ul.MenuBarVertical li:last-child a {
        background-color: green;
        color: yellow;
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarVertical">
      <li><a href="#">Item 1</a></li>
      <li><a href="#">Item 2</a></li>
      <li><a href="#">Item 3</a></li>
      <li><a href="#">Item 4</a></li>
      <li><a href="#">Item 5</a></li>
    </ul>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    In your case, in liue of the background colour, you would have an image.
    Gramps

  • How to get all menu items list in blackberry curve phone

    Hai all
    i am new to Blackberry application developer. I done one application in blackberry in default simulaor, I changed my simulator to Blackberry 8900 simulator. The features is more in curve phones like instant messaging. So i need to get the full menu item list from the API. Do i neddd to change the API ?..  I wanted to get the list like .. camera,maps,contacts,messages,weblin,sms,instant messaging etc. Can anyone help me in this case. My intention to get all the menu items in a list.
    Thanks in Advance

    thank you for your solution.. my aim is list all the menu items in a drop down list. In the default simulator it is fetching all the menu items in the phone through API. But in curve 8900 it is not showing all the menu items, can u give me a suggestion
    like           ^
    camera
    contacts
    maps
    clock
    calendar  like this i need to display
    Message Edited by joedfranc on 05-30-2009 10:57 AM

  • Changing Dimensions of menu items in menubar

    I wanted to make the menu items have an auto width instead of
    a fixed with. So I followed the direction in the Help file under
    "Change dimensions of menu items" to change the .css. The menu
    items now seem to stretch to fit the width of the text, but the
    secondary menus now display horizontally instead of vertically
    below the top menu item. This is only in Explorer 6 & 7. Works
    fine in Firefox.

    Hi Kayo,
    You'll want to checkout these samples:
    http://labs.adobe.com/technologies/spry/samples/menubar/AutoWidthHorizontalMenuBarSample.h tml
    http://labs.adobe.com/technologies/spry/samples/menubar/AutoWidthVerticalMenuBarSample.htm l
    to see what browser bugs you're up against. :-)
    --== Kin ==--

  • Elements 13 - top menu causes mouse to become erratic

    when clicking on a top menu item (ie file or edit or image, etc.) the mouse pointer becomes erratic until the menu is closed.  It is so bad as to be unusable.  This only happens with Elements 13.  Any suggestions?

    HI,
    It would be helpful if you could provide us with the following information:
    1. Which OS are you working on?
    2. Are you using wireless of wired mouse?
    3. Please try clearing preferences of PSE13 editor (keep pressing Ctrl + Alt + Shift while launching editor) and see if the issue still exists.
    Thanks,
    Anwesha

  • Top menu bar is dead

    the top menu bar can display my growl icon, my quicksilver icon
    but cant display my battery life, wifi, and time...
    i went into the system preferences to check all the respective boxes, but they still dont appear....
    help@

    Hi,
    Have you restarted it? Most problems like that will go away if you restart a Mac.
    Post back to let us know if it worked.
    PB

  • Populating menu items from the database...is it possible?

    hi
    using :forms 10g
    we have a requirement in forms where we need to populate the menu items from the database.first we used hiearchial tree where it was possible.but since the requirement changed i am not sure that whether the menu items can be populated by data from the database...will be glad if someone could throw some light on this issue...
    thanks

    You could always do it but would need to put a fix limit on the number of menu items.
    For example you could create a set of menu items at design time with the visible property set to False.
    While reading the database, you then set them to True while setting the label to whatever you require.
    But it all depends also on what you want your menu items to do when selected.

  • Javascript menu items problem.

    Hi,
    We have created a cutom iview which logs the user into a PHP web application. The login works fine. If we make the iview to appear in a new window, i can see all the menu items (coded in javscript) along with the other information on the webpage. On the other hand if we make the iview to appear in the content area of the portal, we see everything except the menu items.
    can anyone tell me what could be the problem. we have tried a lot of options but the result is still the same.
    Thanks in advance.
    Regards
    Hassan

    Hi Hassan,
    maybe you should change the iView's Isolation Method to URL
    hope it helps,
    Yoav
    Message was edited by: Yoav Toussia Cohen

Maybe you are looking for

  • Does not show anything in Flow tab in Interface

    Hi, I am new in ODI and doing File to File data transformation. I have done this successfully. But here I used Global Context. Instead of Global Context of I used my own Context that I have created in the Overview tab of interface the source , stagin

  • FPGA velocity estimation and VFD noise

    Hi, I'm using an NI FPGA (a 7411, I believe) with an RT unit and VFD to get very low lag, high resolution velocity estimation from a 3600 pulse/rev quadrature encoder (mounted on the VFD driven motor). When the VFD is off and I turn the encoder by ha

  • FNRA - Loan Accrual and deferral

    Hi Experts, Appreciate your help to enlighten me why I encounter "No accruals/deferrals amounts determined"  after running t.code FNRA. Can somebody know prerequisite of the report. Thank you very much.

  • Workflow Planning Unit Ownership - Begin the budget review process

    As an Admin, is there a way to assign multiple planning units with an import option or something like that? Right now the only option I see is to go in one-by-one and start the fcst cycle and then assign the ownership to the person who is entering th

  • SWCV and Product

    Dear All,              Can one SWCV be attached to more than one product? Regards, Ashish