Try this on for size:

<cfform
 format="flash"
 action="submit.cfm"
 height="300"
 width="600"
 skin="halosilver">

 <cfformgroup
  type="tabnavigator"
  style="marginTop: 0; marginBottom: 0;fontSize:10;
backgroundColor:##e0e7ef; font-family:Verdana, Arial, Helvetica,sans-serif">

  <cfformgroup
   type="page"
   label="Personal Info">

   <cfformgroup type="horizontal">

    <cfformgroup type="vertical">

     <cfformgroup type="horizontal">

      <cfformitem type="text" width="80" style="">
       First Name
      </cfformitem>

      <cfinput
       name="FirstName"
       id="FirstName"
       type="text" />

      <cfformitem type="text" width="80" style="">
       Last Name
      </cfformitem>

      <cfinput
       name="LastName"
       id="LastName"
       type="text" />

     </cfformgroup>

     <cfformgroup type="horizontal">

      <cfformitem type="text" width="80" style="">
       Email
      </cfformitem>

      <cfinput
       type="text"
       name="Email"
       id="Email"
       required="yes"
       message="Enter Your Email Address"
       validateAt="onsubmit" />

     </cfformgroup>

    </cfformgroup>

   </cfformgroup>

  </cfformgroup>

 </cfformgroup>

</cfform>

On 12/22/06, Paul Henderson <[EMAIL PROTECTED]> wrote:
>
> (Sorry for the repost originally sent with a blank subject in error)
>
>
>
> I have a rookie level flash form question.
>
>
>
> When I create a horizontal cfformgroup it automatically inserts a left
> margin of approx 40-50 pixels. Below is the code I'm using. The only
> attributes that I think could control this extra margin or buffer is
> margin-left, horizontalGap or labelwidth but I've set them all to 0.
>
>
>
> The text box Email which is outside of a horizontal group lines up
> perfectly
> approx 5 pixels from the left but once I throw a txt box in a horizontal
> group this huge indent is created.
>
>
>
> Any ideas would be appreciated. Thanks in advance.
>
>
>
> -Paul
>
>
>
> <cfform format="flash" action="submit.cfm"  height="300" width="600"
> skin="halosilver">
>
>
>
> <!--- Start tab navigator --->
>
> <cfformgroup type="tabnavigator" style="marginTop: 0; marginBottom: 0;
> fontSize:10;
>
> backgroundColor:##e0e7ef; font-family:Verdana, Arial, Helvetica,
> sans-serif">
>
>
>
>            <cfformgroup type="page" label="Personal Info"
> style="marginTop:
> 0; marginBottom: 0; margin-left: 0; margin-right: 0; fontSize:10;
> backgroundColor:##e0e7ef; font-family:Verdana, Arial, Helvetica,
> sans-serif">
>
>
>
>
>
>                        <cfformgroup width="590" type="horizontal" style="
> margin: 0px; indicatorGap: 3; horizontalGap: 0; verticalGap: 0;
> labelWidth:
> 0; horizontalAlign: left; margin-top:5; margin-bottom:5; margin-left:0;
> margin-right: 0;">
>
>                                    <cfinput name="FirstName" type="text"
> label="First Name" />
>
>                                    <cfinput name="LastName" type="text"
> label="Last Name" />
>
>                        </cfformgroup>
>
>
>
>                        <cfinput type="text" label="Email:" name="Email"
> required="yes" message="Enter Your Email Address" validateAt="onsubmit"
> width="175">
>
>
>
>            </cfformgroup>
>
>
>
> </cfformgroup>
>
> </cfform>
>
>
>
>
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264931
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to