Ask a Question related to Macromedia Contribute General Discussion, Design and Development.
-
gwm224 #1
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
-
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. ... -
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... -
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... -
wrapping?
Sorry the time problem. "ll" <lionelluo@hotmail.com> wrote in message news:%23pmDxcQoDHA.1408@TK2MSFTNGP11.phx.gbl... -
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... -
ThinkInk #2
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> </td>
<td> </td>
<td> </td>
</tr>
<tr valign="top">
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr valign="top">
<td> </td>
<td> </td>
<td> </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
"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?
<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



Reply With Quote

