Table not wrapping in Contribute 3

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Table not wrapping in Contribute 3

    I have inserted a table on a page and would like the text to wrap around the
    table. I went into the table properties and set the horizontal alignment to
    "right", but the text does not wrap around the table. I can easily do this in
    DreamWeaver, but I wanted to show some of my content managers how easy this was
    to do in Contribute and now I am baffled as to why it is not working. Anyone
    have a clue?

    I have all the current patches for Contribute 3. I am currently at version
    3.11.

    gwm224 Guest

  2. Similar Questions and Discussions

    1. centering text within a table in Contribute
      I'm using Contribute on a PC doing testing for a professor's website. Per my suggestion, the professor purchased Contribute to edit his pages. ...
    2. Contribute doesn't let us remove table HEIGHT value thatIT 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...
    3. Configuring Table Properties Dialog Box With Contribute
      Hi, This is a query regarding the customisation of Contribute 3 / 3.1. What I require, is to lock off certain aspects of the properties dialog box...
    4. wrapping?
      Sorry the time problem. "ll" <lionelluo@hotmail.com> wrote in message news:%23pmDxcQoDHA.1408@TK2MSFTNGP11.phx.gbl...
    5. Could not load type VTFixup Table from assembly Invalid token in v-table fix-up table.
      We are getting this error after clearing the web.config of database infomation - even after using the wizard to re-enter the information. I could...
  3. #2

    Default Re: Table not wrapping in Contribute 3

    I think you can set this up using css.
    You create a stylesheet especially for your users (or include the style in the
    editable head section of the page). You will have to include this style sheet
    in the head of your pages, to make Contribute recognize the styles.
    In the admin section of Contribute you set up the Styles section so that the
    users can see the styles from this particular css file.
    Make a class that makes the table float.

    <style type="text/css">
    .floating_table {
    float:left;
    margin:0 10px 10px 0;
    }
    </style>

    users can now select the class from the toolbar, and it floats (see attached
    code created in Contribute).

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <HTML>
    <HEAD>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <TITLE>floating table</TITLE>
    <style type="text/css">
    .floating_table {
    float:left;
    margin:0 10px 10px 0;
    }
    </style>
    </HEAD>

    <BODY>
    <table width="800" height="640" border="1">
    <tr valign="top">
    <td><table width="300" border="1" class="floating_table">
    <tr valign="top">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr valign="top">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr valign="top">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    </table>
    I have inserted a table on a page and would like the text to wrap around
    the table. I went into the table properties and set the horizontal alignment to
    &quot;right&quot;, but the text does not wrap around the table. I can easily do
    this in DreamWeaver, but I wanted to show some of my content managers how easy
    this was to do in Contribute and now I am baffled as to why it is not working.
    Anyone have a clue?
    <p>I have all the current patches for Contribute 3. I am currently at
    version 3.11.</p></td>
    </tr>
    </table>
    </BODY>
    </HTML>

    ThinkInk 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