Too Much Space in an Accordion

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default Too Much Space in an Accordion

    Hi --

    I am attempting to build my first "Flash" Form in ColdFusion 8 and I can
    not
    figure out how to trim space around items. For example, I have an accordion
    with two pages. I have two buttons on each page. I want the buttons to be
    flush
    with the top and left of the accordion page, and I have tried various
    settings
    in the style="" attribute such as marginLeft, horizontalGap, etc. in both
    the
    <cfformgroup type="accordion"> and then <cfformgroup type="page"> but in all
    cases the buttons do not move any closer to the left. I have tried negative
    values as well as 0.

    Any input would be greatly appreciated.

    Thanks

    Rich


    Rich Morey Guest

  2. Similar Questions and Discussions

    1. Multiple cfformgroup Accordion don't display in IE7Multiple cfformgroup Accordion don't display in IE 7
      Sorry for the double post, wasn't sure which category to post this question in. On FireFox 2.0.0.12 (Linux), the attach code displays two...
    2. 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...
    3. Accordion
      As in new accordion panes inside a single accordion child?
    4. Need help with accordion component..
      Hi there, Long time flash user, first time poster (and accordion user). I'm making a menu using the accordion component in MX professional. The...
    5. How do I use an Accordion
      I can't figure it out to save myself. I have seen them in action and want to figure it out but do not know how.
  3. #2

    Default Re: Too Much Space in an Accordion

    Hi --

    To better demonstrate what I am trying to accomplish, below is my code with
    no styles applied..

    <cfform name="myform" format="Flash" width="220">
    <cfformgroup type="accordion">
    <cfformgroup type="page" label="Accordion 1">
    <cfinput type="button" value="button1" name="button1" width="180">
    <cfinput type="button" value="button2" name="button2" width="180">
    </cfformgroup>
    </cfformgroup>
    </cfform>


    But I can not figure out which (if any) settings in the STYLE="" tag will
    create the desired output.

    Rich


    "Rich Morey" <rwmorey71@hotmail.com> wrote in message
    news:fa4kpj$7jb$1@forums.macromedia.com...
    > Hi --
    >
    > I am attempting to build my first "Flash" Form in ColdFusion 8 and I can
    > not
    > figure out how to trim space around items. For example, I have an
    > accordion
    > with two pages. I have two buttons on each page. I want the buttons to be
    > flush
    > with the top and left of the accordion page, and I have tried various
    > settings
    > in the style="" attribute such as marginLeft, horizontalGap, etc. in both
    > the
    > <cfformgroup type="accordion"> and then <cfformgroup type="page"> but in
    > all
    > cases the buttons do not move any closer to the left. I have tried
    > negative
    > values as well as 0.
    >
    > Any input would be greatly appreciated.
    >
    > Thanks
    >
    > Rich
    >
    >
    Rich Morey 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