STYLE="" Questions

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.
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.
Any input would be greatly appreciated.
Thanks
Rich

To be certain Contact your local Xperia care
http://www.sonymobile.com/global-en/support/contact-us/
"I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

Similar Messages

  • Indesign Grep style question

    Hello,
    I have a question about Indesign. I want to make the text after a certain character like a hair space for instance bold. This must be set in a paragraph style. I think this can be done with GREP styles. I have tried several things but it doesn't make sense to me.. Does anybody know if this can be done or is there a better way to do this?
    Thanks!

    Apply 'bold' character style to text:
    (?<=~|).

  • Import styles question

    Hi,
    How to be more specific while import style from external file? I am talking about method:
    Document.importStyles (ImportFormat.PARAGRAPH_STYLES_FORMAT,
                                            myFile[, GlobalClashResolutionStrategy=GlobalClashResolutionStrategy.LOAD_ALL_WITH_OVERWRITE])
    The goal is to import chosen styles only (one, few of them) nor all of them.
    thx

    As you found out, the method is called "importStyles" not "importStyle".
    One approach is to use the "properties" property to transfer the essentials of any native object.
    Sub-objects such as the various settings and and options of object styles require extra steps, though.
    E.g.
    myStyle.properties = otherStyle.properties;
    You can also create a blank document, import the styles there and remove the non desired ones.

  • Cfselect flash "style" question

    I'm using the <cfselect> tag with Flash formatting. The
    size attribute is set to 3. I'm using whatever the defaults are for
    the style attribute. When the cfselect renders to the screen, the
    spacing between the items in the select control is too much. I
    can't figure out how to make the spacing smaller. I have quite a
    few of these controls in my form, and it's making the overall form
    way too long. Any suggestions?
    Gracias! Pam

    Try a cfformgroup type="horizontal" with horizontalGap=-2 @
    the style"" property, with your cfselect without label"" and
    cfformitem type="text" for the label. OR Try the same
    type="horizontal" and set a width for the cfformitem type="text"
    for the label. Oh, by the way do you know how to make a jump menu
    with a cfselect with a cfform format="flash"? Sorry to ask but I'm
    trying this for 2 days in a row now...thank you

  • JSF table style question

    Hello all,
    Suppose I have two separate datatables in one page. How can I make it so that both tables are aligned (i.e, one on the left and one on the right). I tried doing this with
    <hx:panelLayout>
         <f:facet name="left">
              // Code for Table 1
            </facet>
             <f:facet name="right">
              // Code for Table 2
            </facet>
    </hx:panelLayout>This achieved both datatables being in the same row, but Table 1 is larger than Table 2.
    Therefore, Table 1 is vertically aligned on Top, but Table 2 is somehow aligned with the middle of Table1, not vertically aligned.
    I am trying to vertically align Table1 and Table 2 but dont know how to do it. (Tried putting this in the dataTable style sheet). This didn't work.
    .dataTable {
         vertical-align: top;
    }Anybody have any clues?
    Thanks.

    I have the same problem and would like to know how you finally did it.
    I tried the myfaces/tomahawk DIV implementation and div enclosed in verbatim -tags but it just won't work.
    My example is a bit more complicated as I am using tiles. Is that a known problem?
    .alignTop{
    vertical-align: top;
    <t:panelGrid id="leftMenuAndContentGrid" columns="2" cellpadding="5">
        <t:div styleClass="alignTop">
                <t:panelGroup id="leftMenuGrid" >
                        <tiles:insert definition="page.leftMenu" flush="false">
                         <tiles:put name="itemType" value="/jsp/itemType.jsp" type="page"/>
                         <tiles:put name="genres" value="/jsp/genres.jsp" type="page"/>
                    </tiles:insert>   
             </t:panelGroup>
         </t:div>
           <t:div styleClass="alignTop">
                <t:panelGroup id="contentGrid" >
                     <tiles:insert name="content" value="/jsp/content.jsp" type="page"/>
                </t:panelGroup>
           </t:div>
       </t:panelGrid>The content page has a dataTable as well as the genre page. Depending on the size either one of the panelgroups is top-aligned the other one is aligned with the middle.
    To get a certain layout I use more dataGrids in those 3 pages like this:
    <h:panelGrid styleClass="header"> 
         <h:outputText .../>
    </h:panelGrid>
    <h:panelGrid styleClass="body"> 
         <h:dataTable.../>
    </h:panelGrid>I don't think they have to be vertical-aligned which I already tried out.
    Any ideas???
    Message was edited by:
    anakin

  • CSS Style Question

    I added a new style called 14 that changed the text and spacing from the rest of the website (that is 16 and other settings)
    It works within dreamweaver, but when I see it on the web, it is still the old size from within a table - <td>
    When I highlight text and select 'class' it will add a 'span' at times
    Other times, when between <td> it will add it to the <td> and it won't work.
    This does not work
    <td height="100" align="center" valign="top" class="14">
    This does work
    <span class="14">
    The CSS is simple:
    .14 {
    font-family: 'Open Sans', sans-serif;
    font-size : 14px;
    line-height:normal;
    color : #666;
    line-height: 20px;
    What am I missing?
    example:
    digitaldealershipsystem.com/gallery.html
    Any of the text in the gray box is marked with <td height="100" align="center" valign="top" class="14">
    I'm hoping I can add a TD or similar, but I don't want it applied to every table
    PS> Obviously there are some HTML and other issues, but I'm only concerned with this right now.
    Thank you.

    CSS Selector names must be Aa-Zz.  They cannot begin with numeric values.
    .14 is invalid code.
    .style14 is valid code.
    Rather than using selector names that carry no purposeful meaning, try to use selector names that tell you what the style is being used for.  It makes your code easier to work with.
    A must read article:
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • Table of contents/paragraph style question

    In my dissertation I have many figures with an associated TOC for the figures.  I have one paragraph style for the figure label/description and this is what is used in the TOC.  Everything is perfect except for some of the figure descriptions are much too long to be included in the TOC.  For these long descriptions, I would like to select only a portion to be included in the TOC.
    I attempted to make and additional paragraph style to apply to the remainder of the description that matched the original 'figure' style, but named differently so as not to be included in TOC.  Unfortunately, I found that a paragraph style means the whole paragraph so the figure description is all in or all out of the TOC.
    Is there a way to apply two different styles in one paragraph so I can split up what is included in the TOC?  Any other ideas?
    If all else fails I will just make a hidden layer with the short description right next to the real one.  I'm afraid this me mess up my numbering scheme though.
    Thanks for any insight,
    Joel

    Adding the second paragraph is probably more trouble than it's worth, particularly if you're numbering automatically. Among other things, that's going to result in double entries unless you do it for all of the figures and use only the hidden tags.
    Why not just edit the text directly in the TOC after you flow the TOC story? There's no law against that, and it's common practice to do so.
    Peter

  • Another object style question...

    I have designated ad space sizes I need to use over and over.  What type of style do I use to create the different ad space frames?

    Object Styles cannot define the size of the objects they are applied to, only the appearance of them and, when using Anchored Objects, their position. The only exception is text frame, which can have a preset column width and number of columns. If you want a text frame to be 2 inches wide, then give it a fixed column width of 2 inches. Then length is unaffected.

  • Panel style questions

    I like the way Panels look in Flex 2.0. There is a drop
    shadow for the component and a drop shadow on the component's
    content box (on default settings).
    I would like my pop-ups to have the same feel. however, the
    border on default Panels has transparency. This is fine when it is
    on top of the grey background of the root application, but when my
    pop-up appears with the same transparent border, it looks bad. I
    fiexed this by setting the borderAlpha to 1.0. But when I did that,
    the drop shadow on the inner content box disappears.
    Is there some way I can have both at the same time?

    MarionJD wrote:
     What exactly does "replace overridden styles" mean in the properties?  I gather from an earlier post of Sikanders that the term has to do with the "+" sign when you directly format an object with a style assigned, but I don't see what the checkbox does.  The help file doesn't help. 
    My understanding, from what little testing I've done with that option..
    Create 3 captions using the 'default caption style.'  Caption1, Caption2, Caption3.  (let's say they're all HaloBlue)
    Change the caption style for Caption1 to HaloRed.  Change the caption style for Caption2 to HaloGreen.  Leave Caption3 alone.
    Click save object style, do not check 'replace overriden style.'  Caption1 and Caption3 will now both be HaloRed.  Caption2 was 'overriden' from whatever the object style was(like you said indicated by the +), so it was not updated.
    Change Caption1 back to HaloBlue.  Click the 'replace overriden styles' check box.  click save.  You'll get a warning first, 'are you sure?' type warning.  All three captions will be HaloBlue.  It updated all the captions that had the default style, as well as the one that was overriden to HaloGreen.

  • A style question, and a Cairngorm question!

    Style - When I draw on a component with a backgroundColor, why can't I see it?
    Cairngorm -
    Sometimes I want to use the result directly in a module that I am showing on the screen. For instance, when I query the server for a group of items in a category. However, I can not add an event listener to the cairngorm result in the module (view) itself. Is the appropriate way to achieve this:
    1) Dispatch my Event
    2) In the result, populate an arraycollection with the items from the category (using a setter, so I can dispatch event)
    3) In module, listen for said event
    4) Populate tile from this eventhandler
    Is this correct?

    Well it's pretty simple:
    <mx:Canvas id="mainCanvas" backgroundColor="0x000000">
         <mx:creationComplete>
              <[CDATA[
                   var g:Graphics = mainCanvas.graphics;
                   g.beginGradientFill( GradientType.LINEAR, [0xffffff,0xffffff], [1.0,0.0], [0,255], verticalGradientMatrix( 0, 0, mainCanvas.width, mainCanvas.height );
                   g.drawRect( 0, 0, mainCanvas.width, mainCanvas.height );
                   g.endFill();
              ]]>
         </mx:creationComplete>
    </mx:Canvas>
    If I remove the backgroundColor, I can see the gradient. If I leave backgroundColor, I can only see black.

  • Base on Style question

    Hi,
    I have 2 existing Object styles, one is called "drop shadow" and is called "rounded corners", both are based on "none". I then want to take the "rounded corners" style, make it the child and base it on "drop shadow", making drop shadow the parent so that the" rounded corners" picks up the drop shadow effect. But when I do it this way it doesn't work, rounded corners doesn't pick up the parent drop shadow effect. The only way I can figure out how to get this to work is in "rounded corners" hit reset to base which then picks up the correct drop shadow but then I have to manually create the rounded corner effect again and redefine the style.
    It doesn't make sense to me why basing something on another after the styles are already created doesn't work. Am I missing something?
    I hope I explained this OK?
    Thanks!!

    It doesn't work because ID presumes any settings that differ from the base style are overrides you want to preserve if you change the base style. Easiest way to do this, I think, is to selec the drop sahdow style, then Alt (Opt) click the new style button to open the dialog. All the attibutes of the drop sahdow style should already be in place so you only have to define the rounded corners.

  • Basic font style question

    Generally, would you characterize serif fonts as more traditional, and sans serif fonts as more contemporary?
    Thanks.

    Too general a question and too broad a generalization.
    Get a book (or a few) on typography. There are oldstyle and modern typefaces in both serif and sans-serif.
    JET

  • Text Style question re INSTR Global text source - Logic Pro X

    I write arrangments for an 18 piece big band. The line up is 5 saxes, 4 trumpets, 4 trombones, piano, bass, drums, male vocalist & female vocalist.
    I only have one GM sound module (Kentron SD2). I use a Midisport 2x4 Midi Interface between the Mac Mini and the Sound Module.
    The set up in Logic Pro X is that in the midi envronmemnt I have 1 multi instrument with the complete band linked up to that
    The set up is as follows:
    Channel 1  1st and 2nd Altos
    Channel 2  1st and 2nd Tenors
    Channel 3  Baritone
    Channel 4  1st and 2nd Trumpets
    Channel 5  3rd and 4th Trumpets
    Channel 6  1st and 2nd Trombones
    Channel 7  3rd and 4th Trombones
    Channel 8  Piano
    Channel 9  Bass
    Channel 10 Drums
    Channel 11 Male Vocal
    Channel 12 Female Vocal
    All the above instrments are on individual tracks even where they share a midi channel- these parts are printed out for use by the band
    Channel 13-16 are spare channels that I use during the development of the arrangement - the track contents for these are not printed out
    Here is the problem. When I print out the parts for the various insturments and use the INSTR global text to identify the specific instrument on the part header, what is displayed is the patch identity for the various instruments as indicateid in the Library. Logic is not reading the track name for this.
    It follows that 1st and 2nd Altos will show on the part header  Alto Sax - similarly for the other wind instruments sharing a midi channel.
    I am a recent convert from Logic Audio for Windows v 5.5.1 where I used the same set up. In that case Logic read the track information and therefore the instrument identification was correctly displayed on the printed parts.
    Any ideas how I can overcome this problem without having to go into each part and manually change the instrument description.
    thanks
    Swingtones

    Hi everyone, Sorry for my earlier long post, I just found the answer. All I needed to do is select REGION instead of INSTR
    Happy Days!
    Swingtones

  • Custom style question

    This should be quick & dirty - what is the setting that I need to change in customstyle.css to get the "Logged in as: username" to be something other than white/off white? I'm working through the settings one by one, but was hoping someone could shorten my search...
    Thanks, -T-

    This should be quick & dirty - what is the setting that I need to change in customstyle.css to get the "Logged in as: username" to be something other than white/off white? I'm working through the settings one by one, but was hoping someone could shorten my search...
    Thanks, -T-

  • 10g adftable:column CSS Style question

    I am trying to left justify the author column in this adf:table but I cannot get it to work. The styleClass does not appear to work for it. I have looked into skinning but because the styleClass is not being applied I can't get it to work for this single column. Any suggestions?
    Thanks,
    Andy
    <af:table rows="15"
                 banding="row"
                 bandingInterval="1"
                 var="book"
                 id="currentImmunizationsTable"
                 width="900"
                 value="#{backingbean.books}"
                 rendered="#{! empty backingbean.books}"
                 immediate="true">
      <af:column sortable="true"
                       sortProperty="author"
                       headerText="Author"
                       id="authorColumn"
                       formatType="icon"
                       gridVisible="true"
                       styleClass="column">
        <af:outputText value="#{book.author}"
                               id="authorText">
        </af:outputText>
      </af:column>
    </af:table>Edited by: anotherhale on Jun 21, 2010 2:04 PM

    Is not "align" what you need?
    <af:column >
    align="left"
    </af:column>                                                                                                                                                                               

Maybe you are looking for

  • How do I see the group that my contact has been assigned  to when I view the individual contact card?

    I have added my contacts to specifics groups via icloud. I want to be able to see the group my contact belongs to when I bring a contact up (either on my iphone or on icloud).  How can I get the "Group"  the contact has been assigned to to show on th

  • No Cyan Printing

    I am in the process of running all the troubleshooting steps from the previous post.  I am afraid that this may be something hardware related.  As you can see from the picture, Cyan is not printing at all.  I was hoping someone may be able to shed so

  • How to create Array type parameter of Oracle 10.2.0.1.0 in java

    I create a collection type with: CREATE OR REPLACE type TEST_User.T_ARRAY AS TABLE OF VARCHAR2(100); and in java code, I use following code to create a parameter of this type, and set it for a procdure String[] userMakeArray = new String[]{"V", "N",

  • Alternatives to Leopard Server

    Given the number of glitches , bugs , Documentation fuzziness and a few more subjects we are considering dropping mac os X server has a production platform on newer systems and we are looking for Working stable alternatives to os X Server, i hope we

  • E52 T9 behavior

    Is there anyway to change the T9 behavior on the E52 back to what was on the E51? I really found T9 on the E51 nearly perfect in that it doesn't add spaces behind each guess and it doesn't pop a menu up on each guess try. I could live with the menu i