Table height in MX2004

I have made all my TABLES with the help of the 'Properties'
elements in MX2004. I merrily created all my tables, including
their HEIGHT and other attributes....Elsewhere here I have
discovered that HEIGHT was never an HTML parameter. So why is it in
the 'Properties' window?
As HEIGHT is an invalid parameter, how can I define its
height when using an 'empty' table for display purposes? An example
is at
http://www.gardensoflondon.co.uk/ken_garden_detail.htm.The
owner liked the look of it, so that's why I am using it. Is there
another way I could 'frame' the content?

http://www.apptools.com/examples/tableheight.php
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Karlhevera" <[email protected]> wrote in
message
news:g2qja4$b4p$[email protected]..
> As HEIGHT is an invalid parameter, how can I define its
height when using
> an
> 'empty' table for display purposes? An example is at
>
http://www.gardensoflondon.co.uk/ken_garden_detail.htm.The
owner liked the
> look
> of it, so that's why I am using it. Is there another way
I could 'frame'
> the
> content?
>
>

Similar Messages

  • Dynamic table height for Printed PO Report

    I have created a RTF template for Printed Purchase Order report using Microsoft Word. The template has Header and Line information. I have two questions.
    1) Lines are printed in Table format. I also print header level notes in Line Section.
    If the header notes are blank, I want the line information (line #, Item Number, Description, quantity etc) to be moved to line1. How do I acheive this?
    I want to dynamically adjust the Table height based on the information printing in the line section. The table has two rows. One for Header notes and one for Line information.
    2) Header notes field is placed in Description column of Line Table (MS word). Currently Header notes are printing within the Description column as wrapped text. I want to print Header notes in one line. How do I expand this field to print in one line?
    Thanks,

    Hi,
    Even I faced the same problem, however I have found a workaround to come out of this problem.
    My PO design template has 16 lines, I am counting the number of lines with data and subtracting the same from 16 and inserting that many empty rows to increase the table height.
    I am pasting the code so that it will be useful for others.
    Paste this code before LINES_ROW for-each loop. This will give the number of lines present.
    <xsl:variable name="_XDOFOTOTAL" select="count(.//LINES_ROW)"/>
    Paste this code at the end of the for-each loop.
    <!-- 16 is the maximum number of rows which fits in my page.-->
    <xsl:variable name="_cnt" select="16-$_XDOFOTOTAL"/>
    <xsl:call-template name="countdown">
    <xsl:with-param name="countdown" select="16-$_XDOFOTOTAL"/>
    </xsl:call-template>
    This function you can put it at the end.
    <xsl:template name="countdown">
    <!-- Instead of for loop. -->
    <xsl:param name="countdown"/>
         <xsl:if test="$countdown">
              <fo:table-row keep-together="always">
              <fo:table-cell/>
              <fo:table-cell>
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell>
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell xdofo:use-attribute-sets="c_33 c_35">
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell xdofo:use-attribute-sets="c_33 c_35">
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell>
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell>
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell>
              <fo:block height="13.2pt"/>
              </fo:table-cell>
              <fo:table-cell/>
              </fo:table-row>
              <!-- Call the template again -->
              <!-- The below code is like x=x-1 -->
              <xsl:call-template name="countdown">
                   <xsl:with-param name="countdown" select="$countdown - 1"/>
              </xsl:call-template>
         </xsl:if>
    </xsl:template>
    If some one is having a better solution, please share.
    Regards,
    SURESH KUMAR M R

  • Fixed Table Height for PO Report

    Hi,
    We have a problem in adjusting the height of the table for Purchase order Report.We are displaying lines and shipment information in the table.
    But the shipments data is varying for each line due to which the table height is also varying on each page.
    We tried fixing this by counting lines but this didn't help.
    Cant we fix the table height so that it runs throughout the page irrespective of the number of lines it contains and gets attached to the footer information at the Bottom of the page.
    Urgent help required.
    Thanks in advance.

    My suggestion would be to figure out the maximum number of lines the layout can handle and fix that number. Then modify the program that generates the XML output to create that many lines i.e. if the max number is 50 and your PO contains 2 lines, create 48 additional dummy blank lines so that the layout is always satisfied. For overflows, i.e PO contains 52 lines, make sure the program handles it.
    Just my suggestion. I've used it for AP checks, where the layout is stub over check and it works great.

  • Table Height Missing in DW CS3?

    I just upgraded from DW8 to CS3. The Properties panel is
    missing the table height fields. I see width, but where height is
    supposed to be is blank...
    I tried searching for "table" in help and couldn't find an
    answer. Any help would be greatly appreciated!
    Thanks
    Jose

    In response to the web community at large, each new version
    of DW is moving
    more and more in the direction of producing so-called valid
    code and
    formatting pages exclusively via CSS.
    "height" has never been a valid attribute of the HTML
    <table> tag, even
    though some browsers have honoured it, so it has finally been
    removed from
    the DW interface.
    http://www.w3.org/TR/html401/struct/tables.html#h-11.2.1
    See
    http://www.apptools.com/examples/tableheight.php
    Also, FYI, here's an example of formatting a table-based
    layout with CSS:
    http://www.projectseven.com/tutorials/css/css_td/index.htm
    In any case, it's good practice on the web to allow your
    tables to collapse
    to suit their content.
    Regards
    John Waller

  • Table Height in Dreamweaver CS3

    Why is it that I'm unable to make my table height stretch to
    fit the browser? I never had this problem when I used FrontPage. Is
    there some code I need to add by hand to make it work? I've
    double-checked the table height and cell height and they are both
    at 100%.
    Thanks in advance!

    > Why is it that I'm unable to make my table height
    stretch to fit the
    > browser? I
    Table height is invalid HTML. DW likes to work with valid
    HTML. To make
    sure that your page validates, DW adds a valid and complete
    doctype to each
    new page you create. When a browser sees a page with a valid
    and complete
    doctype, it renders the page in Standards mode, ignoring any
    invalid HTML it
    encounters. Thus DW pages will result in your table heights
    being ignored
    in the browser. FP had no sense of this detail, and threw
    invalid code out
    like a Pez dispenser, hence your invalid construction seemed
    to work.
    If you really need to do stuff like this, read here -
    http://www.apptools.com/examples/tableheight.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Mr. Angier" <[email protected]> wrote in
    message
    news:fnogrp$cv0$[email protected]..
    > Why is it that I'm unable to make my table height
    stretch to fit the
    > browser? I
    > never had this problem when I used FrontPage. Is there
    some code I need
    > to add
    > by hand to make it work? I've double-checked the table
    height and cell
    > height
    > and they are both at 100%.
    >
    > Thanks in advance!
    >

  • Table height in layout development

    Hello there,
                   I have defined a table in the layout which has a header and a row. Now, I have another table is displayed (using repeating subforms not with standard table layout). When my data is getting printed, if the inner table is blank, then it is currently leaving a blank space on its place. I want the height to be reduced if there is no data in the inner table.
                     I have checked that all the subforms used in the ROW part are FLOWED. However I doubt that, it is taking minimum height of the ROW.
                    Please let me know if there is any way to reduce height automatically when there is less data to be printed.
    Thanks & regards,
    Ganesh V Khumse

    > Why is it that I'm unable to make my table height
    stretch to fit the
    > browser? I
    Table height is invalid HTML. DW likes to work with valid
    HTML. To make
    sure that your page validates, DW adds a valid and complete
    doctype to each
    new page you create. When a browser sees a page with a valid
    and complete
    doctype, it renders the page in Standards mode, ignoring any
    invalid HTML it
    encounters. Thus DW pages will result in your table heights
    being ignored
    in the browser. FP had no sense of this detail, and threw
    invalid code out
    like a Pez dispenser, hence your invalid construction seemed
    to work.
    If you really need to do stuff like this, read here -
    http://www.apptools.com/examples/tableheight.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Mr. Angier" <[email protected]> wrote in
    message
    news:fnogrp$cv0$[email protected]..
    > Why is it that I'm unable to make my table height
    stretch to fit the
    > browser? I
    > never had this problem when I used FrontPage. Is there
    some code I need
    > to add
    > by hand to make it work? I've double-checked the table
    height and cell
    > height
    > and they are both at 100%.
    >
    > Thanks in advance!
    >

  • Table height changes in Firefox

    Here is my website. Looks great in IE6, but in Firefox the
    table height changes and on my 15" monitor, the bottoms get cut
    off. I'm a graphic designer and don't know code well, so I really
    need advice on how to correct this in DW8. Thanks.
    http://bellsouthpwp.net/r/a/rarose1967/Portfolio/Portfolio2/final/Pages/

    Bobbi67 wrote:
    > Here is my website. Looks great in IE6, but in Firefox
    the table height changes
    > and on my 15" monitor, the bottoms get cut off. I'm a
    graphic designer and
    > don't know code well, so I really need advice on how to
    correct this in DW8.
    > Thanks.
    >
    http://bellsouthpwp.net/r/a/rarose1967/Portfolio/Portfolio2/final/Pages/
    >
    What happens if you remove "height" attributes from table
    and td's?
    Mick

  • DW 8 - Table Height 100%

    What's the secret to get it to work?
    I have a table at the top of my site that contains a masthead
    graphic, below that - I have another table that I want to extend
    all the way down 100%. I have that table height set to 100% as I
    did when I had DW mx, but for some reason - it doesn't work now.
    I'm viewing the site on IE 7 and Firefox.
    Thanks

    Table height is not deprecated. It was never a part of the
    HMTL specs.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    ": Nadia : ** Adobe Community Expert **"
    <[email protected]> wrote in message
    news:[email protected]...
    > That's because DWMX didn't use a valid doctype, so that
    it rendered pages
    > on non compatible browsers in quirks mode. Table height
    is not valid,
    > it's deprecated, but it can be made to work with a
    correct doc type... see
    > if this helps:
    >
    >
    http://apptools.com/examples/tableheight.php
    >
    > --
    > Nadia
    > Adobe® Community Expert : Dreamweaver
    > ----------------------------------------
    > CSS Templates |Tutorials |SEO Articles
    >
    http://www.DreamweaverResources.com
    > ~ Customisation Service Available ~
    >
    http://www.csstemplates.com.au
    > ----------------------------------------------------
    > Spry Widget Examples
    >
    http://www.dreamweaverresources.com/spry-widgets/
    > ----------------------------------------------------
    > ~ Forum Posting Guidelines ~
    >
    http://www.adobe.com/support/forums/guidelines.html
    > CSS Tutorials for Dreamweaver:
    >
    http://www.adobe.com/devnet/dreamweaver/css.html
    >
    >
    >
    >
    >
    > "darone75" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> What's the secret to get it to work?
    >>
    >> I have a table at the top of my site that contains a
    masthead graphic,
    >> below
    >> that - I have another table that I want to extend
    all the way down 100%.
    >> I have
    >> that table height set to 100% as I did when I had DW
    mx, but for some
    >> reason -
    >> it doesn't work now. I'm viewing the site on IE 7
    and Firefox.
    >>
    >> Thanks
    >>
    >
    >

  • Table height issue

    Hey,
    on my website below :
    http://www.scenekill.com/parkway/home.php
    just made a rough mock up of it to test everything, and this
    is probably something dead simple, but I have a big table with a
    bunch of smaller ones in it and the main one has a width of 670px
    and the height is set to 100% so even when this isn't enough
    content to stretch down to the bottom the border will still go all
    the way down, but as you can see from my site this isn't happening.
    Just wondered if anyone can see what i'm doing wrong?
    thanks in advance

    Here's the deal.
    A doctype on an HTML page tells the browser how to render the
    page. If
    there is no doctype, or if there is an invalid one, the page
    is rendered in
    quirks mode. If there is a valid doctype, the page is
    rendered in standards
    mode.
    DMX inserted a broken doctype on the page (i.e., functionally
    equivalent to
    no doctype). Earlier versions inserted NO doctype. Hence, all
    these pages
    are rendered in quirks mode.
    In quirks mode, the browser makes an attempt to render
    invalid HTML. Not
    all browsers attempt the same rendering - so you will see a
    variety of
    differences, comparing one browser to the next on the same
    page.
    In standards mode, the browsers all render the same (so they
    say - but in
    practice, while not true, it's much more uniform).
    Table height is invalid HTML. It always has been - it was
    never a part of
    HTML's specs.
    Browsers in quirks mode will try to render table heights.
    Browsers in
    standards mode willl not.
    Geddit?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Joso" <[email protected]> wrote in message
    news:[email protected]...
    > Hey,
    >
    > on my website below :
    >
    >
    http://www.scenekill.com/parkway/home.php
    >
    > just made a rough mock up of it to test everything, and
    this is probably
    > something dead simple, but I have a big table with a
    bunch of smaller ones
    > in
    > it and the main one has a width of 670px and the height
    is set to 100% so
    > even
    > when this isn't enough content to stretch down to the
    bottom the border
    > will
    > still go all the way down, but as you can see from my
    site this isn't
    > happening. Just wondered if anyone can see what i'm
    doing wrong?
    >
    > thanks in advance
    >

  • Setting table height to fill browser window

    I am trying to create a table that fills the browser window
    it is in. See
    http://www.hopkinsandporter.com/about/careers.shtml
    for an example. I applied a height of 100% to the table. Doesn't
    work. I also used CSS to create a style
    .table {height: 100%}
    but this doesn't work either. Any suggestions?
    Tom

    http://www.apptools.com/examples/tableheight.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "TSemmes" <[email protected]> wrote in
    message
    news:e4vpep$76h$[email protected]..
    >I am trying to create a table that fills the browser
    window it is in. See
    ><a
    > target=_blank class=ftalternatingbarlinklarge
    > href="
    http://www.hopkinsandporter.com/about/careers.shtml">http://www.hopkinsand
    > porter.com/about/careers.shtml</a> for an example.
    I applied a height of
    > 100%
    > to the table. Doesn't work. I also used CSS to create a
    style
    > .table {height: 100%}
    > but this doesn't work either. Any suggestions?
    >
    > Tom
    >

  • Table heights inconsistent - Please help!

    I'm not at all savvy with web programming. I have lots of
    experience creating HTML e-mails in DreamWeaver but this is the
    first complete site I've designed and built using DW8.
    http://www.10speedstudio.com/testsite
    I'm almost done except I cannot figure out why two of the
    pages, "contact" and "creative brief", are taller than the other
    pages.
    http://www.10speedstudio.com/testsite/about_brief.html
    http://www.10speedstudio.com/testsite/about_contact.html
    Everything checks out in DW layout mode; every container
    table adds up to 561 pixels high. However, when I look at these two
    pages live (or in browser preview) they are not only taller than
    the portfolio pages, they're off by different amounts.
    I thought perhaps I had added top/bottom margins in CSS that
    weren't showing in DW layout mode but my brief moment of
    inspiration was proven to be incorrect.
    I'd appreciate your input as to what I can do to fix this.
    Thanks in advance!

    Yeah - it's not really good news.
    Layout Mode makes such a godawful mess on your pages it's
    very hard to just
    offer a concise solution that doesn't involve the words
    "start over". For
    example, read this page -
    http://apptools.com/rants/spans.php
    Then look at the code on your page, and count how many
    instances of
    'colspan' and 'rowspan' you see. My quick look came in at
    more than 10.
    Let me just say that your DESIGN for the pages is very
    pleasant. It's clear
    that you do this well.
    And looking at your code, there is ANOTHER huge problem with
    this page - you
    have not used DW's templates properly. I can see that what
    you have done is
    to open a template page, insert unique content for this page,
    and then
    resave the page with an *.html extension. That's just not
    going to work.
    How do I know this? Look here -
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>10 speed | contact</title>
    This is from the Contact page - note the "Template" in the
    comment above the
    title tag?
    The same thing is true on the other page -
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>10 speed | creative brief</title>
    I really don't know what to suggest to you other than to
    either take the
    time to learn the tool, or hire a developer to work with you
    on these
    projects.
    For what it's worth, I removed the HEIGHT="209" from one of
    the table cells
    at the bottom of the table, and you can see the result here -
    http://murraytestsite.com/10speed-contact.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "tenspeedsf" <[email protected]> wrote in
    message
    news:[email protected]...
    >>> Everything checks out in DW layout mode
    >
    > >There's problem #1 - using layout mode to build your
    pages.
    >
    > >> every container table adds up to 561 pixels
    high.
    >
    > >There's problem #2 - using table heights (invalid
    HTML).
    >
    > >> I'm not at all savvy with web programming.
    >
    > >There's problem #3 - and the root of the other two
    problems.
    >
    > Ouch.
    >
    > Frankly, I'm not that interested in learning web
    programming. I'd rather
    > leave
    > that stuff to the folks that enjoy it and spend more of
    my own time doing
    > print
    > design work. Thanks for pointing out everything I don't
    know. Would you
    > mind
    > offering some solutions?
    >
    > I removed the offending heights from my code and, as you
    predicted, it
    > threw
    > my lay-out out of whack.
    >
    > Aside from spending a big chunk of time I don't have
    learning CSS box
    > model
    > for lay-out (and growing gray in the process) what would
    you suggest?
    > Should I
    > use another table-based mode other than Layout Mode? Or
    a WYSIWYG
    > application
    > other than DW? I mean, if it were any good would it
    allow me to use Layout
    > Mode
    > in the first place?
    >
    > I would like to fix this issue and launch my site as
    quickly as possible
    > so
    > that I may go back to my billable work. If you can help
    me out, I'd
    > appreciate
    > it.
    >

  • Help with tables heights

    Hi guys.
    I have a problem with the table height...sorry i am new to this.
    Example
    I have main table with two columns - cplumn1 and column2
    column1 has another table inside with 4 rows (table1)
    column2 has another table inside with 3 rows (table2)
    How can i match the height of table1 and table2?
    I do not want to use fixed heights.
    Can anybody explain me how can i acheive that please?
    Thank you

    Stavrom wrote:
    Thank you Nancy for your input. May be i do not understand something but it did not solve my problem.
    Like i said in my post that i need the both heights to match each other heights. Regardless to contents and the ammount of rows.
    Thank  you
    Is it the background colour of the two tables that you want equal heights?
    If so Google for faux columns. Basically you need to make an image where the left-side of the image matches the background color of table 1 and the right-side matches the background-color of table 2. You then apply this as a repeating background image to the parent table i.e, the table in which the other two tables are inserted.

  • Contribute doesn't let us remove table HEIGHT value that IT PUT IN

    IE displays tables incorrectly when a "Height" value is set
    on a <table> tag, also this markup doesn't validate. So I
    need to give instructions to Contribute users I support for how to
    remove the table height values from the pages they created with
    Contribute... only CONTRIBUTE doesn't provide a way to do this!!!
    Try this:
    1. create a new document in Contribute with only one table
    with three rows and three columns and populate it with text
    table width: 600
    border: 1
    cellpadding & cellspacing: 0
    first col: 300 px
    second col: 150 px
    third col: 150 px
    2. Publish and view source code: no height tags.
    3. Open the document again for Editing in Contribute.
    Select the entire table (click inside the table, then Table
    > Select Table), then drag the lower edge to make it taller.
    This adds a heights value to the <table> tag. Confirm
    this by publishing and viewing source.
    4. Now TRY to remove that height value in Contribute. It is
    impossible.
    This doesn't work:
    Table > Select Table, Table > Table Cell Properties...
    , click "Row and Column" tab, click "Fit to Contents" radio button.
    This also doesn't work:
    Selecting the table and dragging it smaller.
    Maybe I am overlooking something?

    Hi Ibarim,
    verticalAlignment will not work for VBox when you have two or more children and which are direct children. When you have only one direct children for VBox then it will work. Normally we use verticalAlignment="middle" for HBox and not VBox. Since VBox lays out its children vertically this property won't work when you have more than 1 children.
    You can try this
    <mx:VBox id="vb1" width="400" height="100%" verticalAlign="middle">
    <mx:VBox id="vb2" width="200" height="50%">
    </mx:VBox>
    </mx:VBox>
    <mx:VBox id="vb1" width="400" height="100%" verticalAlign="middle">
         <mx:CheckBox id="chk" label="My CheckBox"/>
    </mx:VBox>
    The above two combinations work correctly as you have only one immediate children....But if you see the below case...
    <mx:VBox id="vb1" width="400" height="100%" verticalAlign="middle">
         <mx:VBox id="vb2" width="200" height="50%" backgroundColor="yellow" verticalAlign="middle">
              <mx:CheckBox label="Check Box"/>
             <mx:VBox id="vb3" width="200" height="50%" backgroundColor="blue">
              </mx:VBox>
         </mx:VBox>
    </mx:VBox>
    Now in the above case you can see that VBox vb2 is vertically aligned middle in the VBox vb1 as vb2 is the only one direct child of VBox vb1. Whereas now in the VBox vb2 Check Box and VBox vb3 are not vertically aligned in the VBOx vb2 as because now VBox vb2 contains two children.
    Hope this is clear and make you understand the problem.
    Thanks,
    Bhasker

  • Table height in Smart Forms

    Hi all
    I am using a table in smartforms main window and set its pattern as per the requirement.And i have given the minimum height of table as that of main window.
    If there is only one line item the height of the table is not growing to that of the main window.I cann't use Template as the contents will increase.
    My Only Question is how can we fix the size of the table to that of main window irrespective of the table contents.
    Quick Response is appriciated
    and rewarded.
    Regards
    Pavan

    That is not possible. The table height will be adjusted to the amount of data that is there in the table.
    The minimum height for a table is used for a different purpose. If there is not enough space on the current window for the table to be printed as specified by Minimum height, then the table will be printed on the next page.
    Please mark points if the solution was useful.
    Regards,
    Manoj

  • N00b question - Setting Table Heights

    I have a table inside a layer, i want to set that table to
    have lets say 10 columns and i want the entire table height to be
    100 px.
    What happens is that the table doesn't change its size, what
    happens is that the table is larger then the div itself in the
    page.
    So how do i change it and limit the table height as I wish?

    Shrinking a container will not force the contents to also
    shrink. A table's
    height is determined by its contents, no matter what the
    height of the
    table's container is.
    Just for the record, table height is invalid HTML (always has
    been), and
    will be ignored by modern browsers on pages that have valid
    and complete
    doctypes.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "AirParker" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    http://38.113.149.34/Untitled-2.html
    >
    > notice the left table, its inside a layer, if i set the
    layer height to
    > auto
    > the table is expending the layer like it should in
    perfect size, but, when
    > i
    > try to make the layer smaller so the table will get
    small too u can see
    > the
    > result in the link above.
    > I've tried to set it by giving the table an height too
    like that:
    >
    > <table width="225" height="250" align="center"
    > class="teams_fixture_table" >
    >
    > Didnt really do much, guess its not supporting that
    option in a table...
    >
    > as u can see its easy to make the table bigger, then the
    layer is
    > expending as
    > well, but how do i make the table smaller, without
    removing columns?
    >
    >
    >
    >
    > Originally posted by: Newsgroup User
    > perhaps an url would render other suggestions?
    >
    >
    > "AirParker" <[email protected]> wrote
    in message
    > news:[email protected]...
    > >I have a table inside a layer, i want to set that
    table to have lets say
    > >10
    > > columns and i want the entire table height to be
    100 px.
    > > What happens is that the table doesn't change its
    size, what happens is
    > > that
    > > the table is larger then the div itself in the
    page.
    > >
    > > So how do i change it and limit the table height as
    I wish?
    > >
    > >
    > >
    >
    >
    >
    >
    >
    >

Maybe you are looking for

  • Yoga 2 Pro - Screen not rotating on new Windows 8.1 install

    I got my new Yoga 2 Pro last week and the screen rotation worked properly. I decided to wipe the partitions and install my own version of Windows 8.1. Since then the screen rotation doesn't work. The screen rotation button doesn't do anything and I d

  • Java clients and IUserPrincipal class not working for authentication

    I'm developing a Java client which talks to EJBs on the iAS server via iiop. I've already developed EJBs, and they work fine. I'm trying to do user authentication per the examples in the Rich Client section. Here are the steps I've taken: 1. I've cre

  • Solaris 10 x86 HP ProLiant Insight Management Agents

    HI, I've posted this on HP's forums too but as I'm a sun person I thought I'd ask here if anyone has managed to get this HP stuff to work. I'm trying to get the agent for Solaris to run but I can't get it to start. I have installed the following pack

  • Query about SAP locks /enqueue objects

    I have created an lock object for a bespoke table which has 5 key fields.  For arguments sake let's call them WERKS QMGRP QMCOD OTGRP OTEIL. The problem I have is the following: User 1 has a house profile that can access the following data: WERKS QMG

  • Nokia N73 Camera Photo Capturing Error

    My Nokia N73-01 firmware updated to v4.0839.42.2.1, (Problem was alive Before flashing) But still I cant take images. I can record videos by pressing camera button. But the button will not work in image mode. I have flashed my phone many times. . . S