Spry Vertical Menu, Firefox, Focus Indication Problem

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Spry Vertical Menu, Firefox, Focus Indication Problem

    Hi All,

    I am using Dreamweaver CS4 to create a portfolio site for my work and ran into
    a problem when testing my Vertical Spry Navigation Menu out in Firefox.

    If I click on a navigation element a red dotted frame appears around the
    element and ruins the look/feel of the site.
    [url]http://www.nicholasbreslow.com/sample1/[/url] is a link to the problem (problem
    occurs by clicking, not just hovering).

    The little 'lock' image icon I have as the last element in the menu has been
    strangely affected as well. That seems to have not only the red dotted frame
    but a black frame around the image. I am not sure what could be causing this
    but it might be unrelated to the red dotted frame. Can you put images in a
    Spry Menu?

    I have done some research here and this might be caused by keyboard tab focus
    issues with Firefox? It works fine in Safari and I haven't tested in IE yet.
    I am really new to this and hope someone here can help me. Thank you in
    advance!

    PS - If you can detailed instructions would be a real help. I am new to this
    and have basic CSS/HTML skills and no Javascript skills at all.

    Sincerely,

    -Nick Breslow

    nbreslow Guest

  2. Similar Questions and Discussions

    1. Spry Tabbed Panels overwritting popup menu in IE6 andIE7 but display fine in Firefox
      I am new to Spry and Dreamweaver CS3 and would appreciate any help anyone can give. I am having an issue with Spry Tabbed Panels appearing above a...
    2. Vertical text alignment in menu spry
      I tried to search this topic with no success. I have created a horizontal spry menu bar. I cannot get the text to align vertically. Everything...
    3. Sub sub menu problem in spry vertical
      on the following page: http://www.bellwetherproductions.com/newsite/about.html If you roll over about, our rector, there is a sub-sub menu item,...
    4. Spry horizontal menu: vertical text align issue
      Hello all, I have a simple horizontal Spry menu I'm working on. The menu is single level - no submenus. The problem is that I cannot get the...
    5. PluginLab Vertical flyout menu problem
      Hi I have just downloaded the trial version of pluginLab vertical flyout menu and don't seem to be able to get the menus to flyout. Even if I...
  3. #2

    Default Re: Spry Vertical Menu, Firefox, Focus Indication Problem

    nbreslow wrote:
    > Hi All,
    >
    > I am using Dreamweaver CS4 to create a portfolio site for my work and ran into
    > a problem when testing my Vertical Spry Navigation Menu out in Firefox.
    >
    > If I click on a navigation element a red dotted frame appears around the
    > element and ruins the look/feel of the site.
    > [url]http://www.nicholasbreslow.com/sample1/[/url] is a link to the problem (problem
    > occurs by clicking, not just hovering).
    For me in Firefox 3 it occurs when hovering over your menu items.
    >
    > The little 'lock' image icon I have as the last element in the menu has been
    > strangely affected as well. That seems to have not only the red dotted frame
    > but a black frame around the image. I am not sure what could be causing this
    > but it might be unrelated to the red dotted frame. Can you put images in a
    > Spry Menu?
    The issue you're seeing is an accessibility feature called an outline, and is present to give folks that are using their keyboards an indication of where they are at when they are tabbing around the page. Removing it will remove any benefit those to those users, and will make your page less accessible. You should be able to remove it by setting the outline property of your menu items to outline:none. Using something similar to the following in your CSS:
    ul.MenuBarVertical a {outline: none;}

    Images when linked by default have a border around them, you can turn off that border by specifically setting border to none either directly on the img tag with border="0" or in the style sheet:
    ul.MenuBarVertical a img{ border: none;}
    > PS - If you can detailed instructions would be a real help. I am new to this
    > and have basic CSS/HTML skills and no Javascript skills at all.
    Also, you should ask Spry related questions in the Spry forum:
    [url]http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602[/url]



    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139