How can insert tables, and create independent cells?

1,400 views
Skip to first unread message

ronaldo.d....@gmail.com

unread,
Nov 12, 2013, 7:12:35 AM11/12/13
to gwd...@googlegroups.com
Hello guys,

It is possible to insert tables in GWD, to create independent cells, merge, add rows and columns?
How can reaizar this task?

I created a demo site, and got all scruffy, some images reassembled and almost all browsers.

Another difficulty that I could not solve was to create mapping images to create links in aréas determined.

Does anyone have a solution for this?

thx!
Ronaldo

looch...@gmail.com

unread,
Apr 19, 2014, 4:59:18 AM4/19/14
to gwd...@googlegroups.com
need to manual type in code view

<table><tr><td>test A</td></tr><tr><td>test B</td></tr>
</table>

Chris Potter

unread,
May 8, 2014, 3:51:33 AM5/8/14
to gwd...@googlegroups.com
You can create tables by using HTML

For learning how to create tables, cells, Row and col merge.
 
<table style="width:300px">
<tr>
  <td>Jill</td>
  <td>Smith</td>
  <td>50</td>
</tr>
<tr>
  <td>Eve</td>
  <td>Jackson</td>
  <td>94</td>
</tr>
</table>

For merge you can use row or column span.
<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
    <th>Savings for holiday!</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
    <td rowspan="2">$50</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
Learn it from w3schools.com

Reply all
Reply to author
Forward
0 new messages