Drop Down Menus in CC

I found out the hard way Spry is no longer supported in Dreamweaver CC. I can not purchase another program to create a simple drop down menu. I know I need to use JQuery to do this. Can any one tell me how to do this or send me the coding I need to do this. I watched a video on Lynda.com but it is outdated using older versions of Dreamweaver so the coding did not work in CC. I'm frustrated, this shouldn't be that difficult as drop down menus are on most web sites. If anyone can help me I'd really appreciate it. I can't believe this is so complicated now. Spry seemed simple.

Candice,
Here's a basic CSS Menu I built.
CSS code:
/* BEGIN HORIZONTAL DROP-MENU */
#menu {
    clear: left;
    position: relative;
    z-index: 1000;
    width: 100%; /**adjust width as needed**/
    margin: 0;
    padding: 0;
#menu ul {
    margin: 0;
    padding: 0
#menu li {
    list-style: none;
    font-size: 14px;
    float: left;
    text-align: center;
/**top level menu**/
#menu li a {
    display: inline-block;
    text-decoration: none;
    /* adjust width as needed or use auto */
    width: 14em; /*same as sub-menus*/
    /*space between links*/
    margin: 0 2% 0 2%;
    padding: 8px;
    font-weight: bold;
    line-height: 1.50em;
    border: 1px dotted #666;
    border-top: none;
    color: #FFF;
    background: #000;
/**top menu style on mouse over**/
#menu li:hover > a { background: #333; }
/**sub-menu**/
#menu li ul {
    display: none;
    text-align: center;
    margin: 0;
    padding: 0;
/**sub-menu, help for older IE**/
#menu li:hover ul, #menu li.hover ul {
    display: block;
    position: absolute;
    z-index:1000;
    padding: 0;
#menu li:hover li, #menu li.hover li { float: none; }
/**drop-menu style**/
#menu li:hover li a, nav li.hover li a {
    width: 14em; /* adjust width as needed or use auto */
    margin-top: 0;
/**drop-menu style on mouse over**/
#menu li li a:hover {
    background: #FFF;
    color: #000;
/* Clear floated elements at the end*/
#menu:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
/**END HORIZONTAL DROP-MENUS STYLES**/
HTML:
<nav>
<ul id="menu">
<li><a href="#">ABOUT US &#9660;</a>
<ul>
<li><a href="#">Videos</a></li>
<li><a href="#">Newsletter</a></li>
</ul>
</li>
<li><a href="#">PRODUCTS &#9660;</a>
<ul>
<li><a href="#">Broken Glass</a></li>
<li><a href="#">Mosaic Tiles</a></li>
<li><a href="#">Adhesives</a></li>
<li><a href="#">Grout</a></li>
</ul>
</li>
<li><a href="#">ACCESSORIES &#9660;</a>
<ul>
<li><a href="#">Gloves</a></li>
<li><a href="#">Rubber Mallets</a></li>
<li><a href="#">Sponges</a></li>
<li><a href="#">Safety Glasses</a></li>
</ul>
</li>
<li><a href="#">CONTACT</a></li>
</ul>
</nav>
Nancy O.

Similar Messages

  • My Drop Down Menus Do Not Work Properly in IE

    Hey. I'm really stuck and have been for over a week. Let me preface this by telling you I didn't build our website and have little knowledge of spry and spry assets. I can't the get the gentleman that built our site to help and I'm desperate!
    The site - www.ncsoccer.org , has drop down menus. They work fine in Chrome, FF and Live Preview (DW CS4). But in IE8, they do not.
    I had to revise the drop downs (changing names and removing some drop downs - I've done this with no problem before). When I uploaded the index page and the template pages, the error started.
    In addition, the people in my office that use Contribute to update their sections, cannot access anything but our index page and I don't know what (if anything) I've done wrong, as everything worked fine before the menu revision.
    I'm including the 'sprymenubarhorizontal.css" code below. Maybe you can see something that isn't right.
    Thanks for any insight or suggestions. Remember, asking me to create to create sprys or widgets or something like that may be over my head! Try to dumb it down for me!
    Thanks.
    Mark
    (sprymenubarhorizontal.css code)
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 15em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 15em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    width: auto;
    background-attachment: fixed;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #ffffff;
    padding: 0.3em 0.75em;
    color: #000;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #cccccc;
    color: #000;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #cccccc;
    color: #000;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image:  url("SpryMenuBarRight.gif");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image:  url("SpryMenuBarRightHover.gif");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;

    A;though the CSS is very well documented, there are those that ignore those signs. Look at the following
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: auto;
        float: left;
    The rest have been given a width of 15em, so this value may be a good start.
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCC;
       width: auto;
        background-attachment: fixed;
    Just keep the border property and remove the other two.
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;
    The following is the original for the above
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    Cheers,
    Gramps

  • How can I correct the problems I've been experiencing lately  with drop-down menus in general as well as and leading of text. It 's occurring  on both Safari and Firefox browsers.

    The above headline pretty much covers the problems.
    Access to the drop down menus is erratic.  Sometimes it's problem-free, but at other times it's impossible to see the options on the menu, or if they are visible, it's impossible to effect a change by clicking on one of them.  The times I notice it most is when I am trying to change fonts or font sizes, but  it occurs at other times, as well.
    It's also frustrating to have to deal with double spacing (for example, when describing items on eBay).  Sometimes the text flows  normally,  but if I force a  return, the text that follows usually is double-spaced.
    Often,  the justification option does not work either.
    Occasionally, I can  get around one problem or another by switching back and forth between Safari and  Firefox, but eventually, the original problem resurfaces.
    Because it happens on both browsers,  eBay tech support is inclined to think the problem is in my software. (I'm inclined to agree.)
    Although they have suggested clearing  the history in FF, that option must have been relocated, because  it'sno longer under the "Tools"  menu, where it was  in the past. I also can't find  the clear  your cache option on OS Safari or 10.8.3.

    callthescribe wrote:
     ...Although they have suggested clearing  the history in FF, that option must have been relocated, because  it'sno longer under the "Tools"  menu, where it was  in the past. I also can't find  the clear  your cache option on OS Safari or 10.8.3.
    I don't think it'd help much but clearing history is now in the History menu, and setting FF to clear history on exit is near the bottom of the Privacy tab of FF Preferences.
    Also, if you don't have the Develop menu in Safari, open Safari preferences, click Advanced, and select “Show Develop menu in menu bar.” You'll find "Empty Caches" there.

  • Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?

    Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?  I use this for my mobile, on-site auto repair business and not being able to call up repair and diagnostic info and reference for some cars is troublesome for sure. It works fine on the computer and I have installed a remote desktop app as a workaround but it is unreliable because the desktop is not business dedicated and may be off or in use at the time. So is there a known fix for this?
    Let me paint a more descriptive picture, visualize 4 drop down selection menus, first one is for year, next one is for make, 3rd one is model and the last one is for engine size/type. If I wanted to choose a 2012 vehicle it wont work because it is the top selection on the list. This can be forced by selecting any other year and then coming back to 2012. Ok fine, but then let's say I wanted to choose Acura as the make, well it won't take it because again it's the top selection. Again you work around it be selecting any other make and coming back to Acura. Ok now select the model, same trend follows. But now since most Acura vehicles come with dedicated engines and no optional engines I have only 1 selection in that final drop down menu and it will not take my selection and therefore never let me proceed to the info I need.
    This is also true when ordering parts from my wholesaler's website, they use drop downs and I can only get to that last drop down and then I'm stuck. This is blindingly frustrating, what options do I have. I'm not opposed to any avenue at this point.

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • Drop down menus disappear in a blink of an eye. If I open more than 10 tabs I can't get to them, the arrow takes me back to the first 10. Only in FF, IE works fine. Tried safe mode and no change. It was fine one day and then not the next?

    drop down menus don't work...they disappear in a blink of an eye. This only happens in FF not IE? That includes the menu below! I can't have more than 10 tabs open because the arrow won't take me past 10 it just returns to the first 10???

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • I am having some serious issues with firefox, i can't print anything because it is stuck on fax and I can't use any of the drop down menus on any site

    I am having some serious issues with firefox to the point of choosing another search engine. I can't print anything because it is stuck on fax and won't let me change it to my printer when i do try to select my printer it jumps right back to fax. The drop down menus do not work on any of the sites I go to. For example when purchasing clothes and you have to choose a size from a drop down menu I can't do it when I click on the drop down menu it doesn't work at all. I don't have a virus I ran my virus protector and no viruses are present. I don't have any suspicious issues going on with my computer so there has to be something in Firefox that is causing my issues. I tried internet explorer and I don't have any issues there. I hope you can help me because I love Firefox and would really like to continue to use it.

    Lots of issues there, main one getting fcpx going again, try deleting the preferences using the utility deveoped by these guys.
    http://www.digitalrebellion.com
    Try deleting your render files and re-rendering the project.
    Start with these and let us know how you go.
    Tony

  • Gmail drop-down menus (Move to, Labels) and emails and Facebook chat will not open.

    I am unable to open emails in standard Gmail. Emails can be opened after switching to the basic html version. I am also unable to use the drop-down menus, such as "Move to" or "Labels." The button turns gray, but the options do not appear.
    Facebook chat is giving me a similar problem. When I click "Chat" in the bottom left, it acts as though it's trying to load but does not open up to reveal friends.
    I have tried the following: deleting cookies, reinstalling Java, updating my vid card drivers, and uninstalling/reinstalling Firefox
    Scans for viruses and spyware have yielded no results. I use AVG, Spybot, and Malwarebytes. The Gmail emails and menus will open in IE8.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I ran Advance System Care 3 Disk Optimizer program and now my drop down menus are too fast. How do I slow them down

    I ran Advanced System Care3 disk optimizer program on my computer and now the drop down menus in Firefox open too fast. Mostly in the Bookmarks menu with nested folders. I went into the registry and changed all the "MenuShowDelay" data values back to 400(which were changed to 200 by the program. All the other windows programs drop down menus went back to the original speeds and are fine. Firefox did not change back to it's original delay speed. Where is the registry entry or configuration file for Firefox? How can I slow the menu down?
    Thanks,
    Tony

    I ran Advanced System Care3 disk optimizer program on my computer and now the drop down menus in Firefox open too fast. Mostly in the Bookmarks menu with nested folders. I went into the registry and changed all the "MenuShowDelay" data values back to 400(which were changed to 200 by the program. All the other windows programs drop down menus went back to the original speeds and are fine. Firefox did not change back to it's original delay speed. Where is the registry entry or configuration file for Firefox? How can I slow the menu down?
    Thanks,
    Tony

  • Lost all the text in my drop down menus

    All of a sudden I do not see any text in my drop down menus or on pop-ups. I tried to open Safari and got the pop up menu with a yellow triangle with a black exclamation point in it. It also had the three buttons at the bottom - one was blue - but no words.
    I can open Firefox but not Safari. I can open the System Preferences widget but all I see are the icons, not the names of the choices. No matter what application is open I do not see any words in the dropdown menu.
    First I tried zapping the PRAM. Didn't work. Then I booted from the startup disk and ran the disk repair utility, it repaired several things, but I'm still having the problem.
    The font on my menu bar has changed too.
    I installed x11 two days ago - not from the startup disk but from a website a friend helped me find when I didn't have my disk with me. I also installed Open Office. Should I uninstall those?
    Is it possible I got a virus?? I have no clue how to deal with a virus on a Mac. I haven't had any trouble with my iBook since I got it in November 2005, and I don't know any tricks.

    hi Rina!
    my apologies, i'm guessing from your name that you might be from a non-english-speaking location ... if so, check to see if this is an issue for you (also see other posts in the thread):
    Markus Eberhard, "iTunes 6: No music shows up in iTunes after upgrading" #12, 03:59pm Oct 18, 2005 CDT
    ... if i've gotten things horribly wrong, post back and we can try again.
    love, b

  • My drop down menus made in Fireworks wont work after I put them in Dreamweaver

    I am trying to make a site for my work. And I made a drop down menu within Fireworks. I pasted the code into the place I wanted it to go on Dreamweaver, then I saved the page and went into Internet Explorer. I rolled over my buttons that were supposed to be drop downs and they only work if you refresh then roll over and once you take your mouse off of it, you'd have to refresh again to see the buttons. I have tried and tried to figure this out but I just cant seem to. PLEASE HELP!
    JoLynn
    Here is the link to my page
    http://lakechelanmirror.bravehost.com/
    The drop down menus are supposed to be the NEWS button and MIRROR BLOG button.
    I THINK this is the code for the menu..
    var mmOpenContainer = null;
    var mmOpenMenus = null;
    var mmHideMenuTimer = null;
    function MM_menuStartTimeout(hideTimeout) {
    mmHideMenuTimer = setTimeout("MM_menuHideMenus()", hideTimeout);
    function MM_menuHideMenus() {
    MM_menuResetTimeout();
    if(mmOpenContainer) {
      var c = document.getElementById(mmOpenContainer);
      c.style.visibility = "inherit";
      mmOpenContainer = null;
    if( mmOpenMenus ) {
      for(var i in mmOpenMenus) {
       var m = document.getElementById(mmOpenMenus[i]);
       m.style.visibility = "hidden";  
      mmOpenMenus = null;
    function MM_menuHideSubmenus(menuName) {
    if( mmOpenMenus ) {
      var h = false;
      var c = 0;
      for(var i in mmOpenMenus) {
       if( h ) {
        var m = document.getElementById(mmOpenMenus[i]);
        m.style.visibility = "hidden";
       } else if( mmOpenMenus[i] == menuName ) {
        h = true;
       } else {
        c++;
      mmOpenMenus.length = c+1;
    function MM_menuOverMenuItem(menuName, subMenuSuffix) {
    MM_menuResetTimeout();
    MM_menuHideSubmenus(menuName);
    if( subMenuSuffix ) {
      var subMenuName = "" + menuName + "_" + subMenuSuffix;
      MM_menuShowSubMenu(subMenuName);
    function MM_menuShowSubMenu(subMenuName) {
    MM_menuResetTimeout();
    var e = document.getElementById(subMenuName);
    e.style.visibility = "inherit";
    if( !mmOpenMenus ) {
      mmOpenMenus = new Array;
    mmOpenMenus[mmOpenMenus.length] = "" + subMenuName;
    function MM_menuResetTimeout() {
    if (mmHideMenuTimer) clearTimeout(mmHideMenuTimer);
    mmHideMenuTimer = null;
    function MM_menuShowMenu(containName, menuName, xOffset, yOffset, triggerName) {
    MM_menuHideMenus();
    MM_menuResetTimeout();
    MM_menuShowMenuContainer(containName, xOffset, yOffset, triggerName);
    MM_menuShowSubMenu(menuName);
    function MM_menuShowMenuContainer(containName, x, y, triggerName) {
    var c = document.getElementById(containName);
    var s = c.style;
    s.visibility = "inherit";
    mmOpenContainer = "" + containName;

    Only half works in opera, menu doesn't stay visible long enough to click on it.
    I'm also getting "<%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>" at the top of every page?

  • How do I get spry drop down menus to display infront of my content?

    Hi,
    I am currently using DW CS4 to create a website for a uni project. I have created a Spry Menu bar which displays correctly when I preview it however I have uploaded a few pages to my site to test them and the drop down menus disappear behind my content. Is there any way I can fix this?
    My web address is www.nataliemiddlemore.110mb.com if you want to have a look. There is currently only 3 pages uploaded.
    Also the drop down menus do accross the page horizontally rather than drop down underneath each other. Is there a way to fix this?
    I would be very grateful for any help and am only a beginner so keep it as simple as possible for me.
    Thankyou in advance.

    You have used Absolutely Positioned Divs for your primary content. AP Divs are (by definition) taken out of the normal flow of the page. When they are in the code after the menus, they might show in front of them. I did not experience that on my system, however.
    I don't see any overriding reason...beyond the thought that AP Divs are easy to make and place...for using AP Divs. Your page structure is very stable, and normal relatively-positioned Divs should work just fine.
    As to the drop down menus trailing horizontally across the page, control the width of this: ul.MenuBarHorizontal ul to contain the left-floating list items. That style selector shows up in the SpryMenuBarHorizontal.css stylesheet. The submenus should then fall vertically.
    Beth

  • Business Contact Manager 2013 Issue with drop down menus not working correctly and BCM disappearing.

    We upgraded from BCM 2007 to BCM 2013.  Now the BCM disappears from Outlook occasionally and the drop down menus are confused. for instance when accessing the drop down for phone numbers, the user selects company - but the field for TTY/TDD comes up.
    Shows fields that don't exist etc.
    The client is using Office 2013 Pro Premium from Office 365 Small Business Premium subscription and BCM downloaded from Microsoft website.
    Please let me know what the support avenues are for this product.
    Chris Smith

    Hi,
    This issue may be caused since the BCM was not installed properly.
    Please go to Control Panel -> Programs and Features, find Business Contact Manager for Microsoft Outlook and Uninstall it.
    Then go to
    http://www.microsoft.com/en-us/download/details.aspx?id=36513, download the right version of BCM(32bit or 64bit) and install it.
    If issue persists, you may provide the screenshots of the issue, post them to SkyDrive and share it via a link:https://skydrive.live.com/, then we will have a better understanding on the issue.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • My 27 inch imac has just started acting weird, the thumbnail images and folder on the desktop have disappeared although the titles are still visible. When I open a programme the programme windows are all black and the drop down menus just show random

    When I tried to open the web browser the browser flashed black and white at start up, then all the applications when i open a new window are completely black, I am unable to view the drop down menus as the come out as random pixels. This happens to all new applications i have been able to open. The document window opens as plain white but if you click on it  it opens a document even though you cant see any thumb nails. Some of the documents are open as normal images/files. Having been a mac user for 10 years i have never seen anything like this before, any ideas or suggestions

    I have started running a virus check.
    There are no viruses for OSX.  Uninstall the software, repair permissions and restart your computer.  Especially if it's Norton's.  It's known to cause problems.
    To rule out a hardware problem, run the hardware test:  http://support.apple.com/kb/PH11342 OS X Mountain Lion: Use Apple Hardware Test and zapp the PRAM:  http://support.apple.com/kb/PH11342 OS X Mountain Lion: Use Apple Hardware Test.
    In the end you may need to lug your iMac down to your local AASP or an AS.  Diagnostic testing is FREE!
    i have had a mac in fact it is 17 years.
    You got me beat by 3 yrs.

  • I recently updated to the newest version of Flash (17.0.0.134) and I have a MacBook Air, running OSX. Ever since the update I can no longer select drop down menus or get Netflix to run properly. Has anyone else had this issue/know how to resolve it?

    I recently updated to the newest version of Flash (17.0.0.134) and I have a MacBook Air, running OS X and I have Safari version 8.0.4.  Ever since the update I can no longer select drop down menus or get Netflix to run properly. Has anyone else had this issue/know how to resolve it?

    1. System Preferences > Flash Player > Advanced > Delete All
        Press “Delete All” button under “Browsing Data and Settings”.
    2. Install Adobe Flash Player.
        System Preferences > Flash Player > Updates
        Press the “Check Now” button.
        http://get.adobe.com/flashplayer/
        Download it and quit Safari from Safari menu in the menu bar.
        Follow the prompts to install Adobe Flash Player.

  • Why are drop down menus on webpages in Safari no longer working? I have iphone4 ios6.0.1. Is there a fix?

    Since I updated to 6.0, the drop down menus on the web pages I use in Safari on my iphone 4 are no longer working.  The drop down appears and then quickly disappears so that you can't select anything.  Is there a fix?  One example is http://www.scvavolleyball.org/  I need to select Juniors>Girls>Weekend Sites but I can't on my phone....but I used to be able to....and I still can on my ipod touch.  Help.

    The current release supports the white-space property for a text area and it is possible that the website uses white-space: pre instead of white-space: pre-wrap.
    The former will prevent Firefox from wrapping the text.
    You can check that in the Inspector via the right-click context menu.
    *https://developer.mozilla.org/Tools/Page_Inspector
    See:
    *https://developer.mozilla.org/en-US/Firefox/Releases/36#CSS
    <blockquote>The white-space property is now working on <textarea> HTML elements (bug 82711).</blockquote>
    See also:
    *[[/questions/1050456]] Word wrap problems in 36.0

  • Drop down menus on certain websites (ie ESPN) are no longer working on Firefox but work with both Chrome and IE on same computer so I believe its Firefox issue.

    I tried updating Firefox to 19 and then even the Beta 20 version. I have rebooted computer countless times. On the same computer, I can open IE and bring up ESPN and the drop down menus work fine so I know its not a computer issue and it must have something to do Firefox. I tried the "starting in safe mode" and disabling add ons because I saw those suggestions but that didnt work. I also tried unchecking the box about hardware acceleration because I saw that suggested also and needless to say that didnt work either. Can someone please please help me, its very frustrating.

    The menu on the ESPN site is generated via JavaScript, so make sure that you aren't blocking JavaScript if the menus aren't working.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

Maybe you are looking for

  • Shared Folders in mail

    I'm running a OS X Leopard Server mail server. Since a few days a folder called "Shared Folders" appeared in all mailboxes. Within this shared folders folder there are several folders with strange names: ._-Dong-seeiuqi ._-Jolie-seignora .-seer1990 .

  • Self Assigned IP + Firewall Disabled = No security?

    Hi everyone. My 8600M GT card died last week, so I had my logic board replaced and my Macbook Pro returned to me a few days ago. Before the logic board replacement, I had no issues connecting wirelessly to my Apple Airport Extreme (newest model with

  • Ringtones function not available on my iTunes

    I do not have ringtone functions on my iTunes, I've updated to latest versions, completely uninstalled everything apple or iTune related on my computer, and redownloaded, and still can't get the functions! Flatmates version has right click - create r

  • Limit on number of records in alert?

    Hi all I have created a query which returns about 4.000 records. For reporting to an external party, I want these mailed once a week using regular e-mail. I've set up an alert, which basically works fine. However, the number of records in the e-mail

  • Menu options won't display in channel strips or plug-ins

    Hi peeps, this is what I see whenever I click on, for example, the menu button on Sylenth 2.21 (first pic) or, second example, the Bus button on a channel strip (second pic).  No options display - and I have no idea why not.  I cannot load a new bank