Spry accordion with links??? Possible???

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

  1. #1

    Default Spry accordion with links??? Possible???

    Fellow Dreamwearvers. I am trying, perhaps mistakenly, to use the accordion
    widget as a menu bar.
    I prefer it to the menu bar where the submenus shoot out to the side. I have
    the accordion set up and running fine in Spry 1.6.1
    When I add a link to a submenu it screws up the css in places I am not even
    touching...Changes the font, font size, placement. Yet it does not reflect
    these changes in the stylesheet as a new css style. Plus... the link doesn't
    work.
    Help! Please. Do I need to abandon this for a true vertical menu bar, am I
    doing something terribly wrong or is there a workaround? LINK:
    [url]http://www.ouritalianvacation.com/apartmentx2.html[/url]
    Thanks much,
    Andrew

    tinman-i_am Guest

  2. Similar Questions and Discussions

    1. Spry Accordion browser issue
      When I preview my page in browser, there is a dotted line all around the spry accordion widget. I've looked through the css and can't find where that...
    2. spry accordion
      Hi I can't understand how to get the accordion to open a tab on mouse over. It just opens now when it's clicked. I found a lot of information on...
    3. Spry - Accordion
      Hi, I'm building a menu for a website with the Spry accordion widget. I want to open the accordion with a mouseOver-effect, but not close them...
    4. Closing Spry Accordion Panels
      Hi, i use Spry Accordion for this site: http://dailycast.de I want to close a open panel by clicking on these panel? Here is my Code:...
    5. CS3 Spry Accordion Gaps
      I have created a Coldfusion webpage with two Spry's, the accordian Spry and the Spry Menu Bar. When viewing the Spry Accordion in Internet explorer...
  3. #2

    Default Re: Spry accordion with links??? Possible???

    On Jul 14, 2:52*am, "tinman-i_am" <webforumsu...@macromedia.com>
    wrote:
    > Fellow Dreamwearvers. I am trying, perhaps mistakenly, to use the accordion
    > widget as a menu bar.
    > *I prefer it to the menu bar where the submenus shoot out to the side. I have
    > the accordion set up and running fine in Spry 1.6.1
    > *When I add a link to a submenu it screws up the css in places I am noteven
    > touching...Changes the font, font size, placement. Yet it does not reflect
    > these changes in the stylesheet as a new css style. Plus... the link doesn't
    > work.
    > *Help! Please. Do I need to abandon this for a true vertical menu bar, am I
    > doing something terribly wrong or is there a workaround? LINK:[url]http://www.ouritalianvacation.com/apartmentx2.html[/url]
    > * Thanks much,
    > *Andrew
    You'll probably have to hand code your links in code view. I'd use the
    unordered list and list item tags around your sub-items. See how it's
    handled in Spry menus and you can borrow from that. You'll be able to
    see what's going on if you have your Code Inspector window open at the
    same time. You'll also need to create a style for those links in your
    CSS.
    lisamarsha@gmail.com Guest

  4. #3

    Default Re: Spry accordion with links??? Possible???

    Hi tinman, perhaps you should include the a: elements in he css. Something
    like:
    [Q].Accordion a:link {
    text-decoration: none;
    }
    .Accordion a:visited {
    text-decoration: none;
    }
    .Accordion a:hover {
    text-decoration: none;
    }
    .Accordion a:active {
    text-decoration: none;
    }[/Q]

    Thomas B?ttiger 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