Horizontal separation in tables

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
Oleksandr
 
 
Posts: 156
Joined: Fri Aug 11, 2023 10:03 am

Horizontal separation in tables

Post by Oleksandr »

Good day.
Tell me how to divide the cell of the table horizontally
User avatar
Pablo
 
Posts: 23258
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Horizontal separation in tables

Post by Pablo »

I assume you mean vertically merging? This is not supported.
Oleksandr
 
 
Posts: 156
Joined: Fri Aug 11, 2023 10:03 am

Re: Horizontal separation in tables

Post by Oleksandr »

I need to make it possible to create a table title row for two or more cells that summarizes them like the following
<table style="position:absolute;width:168px;height:168px;" id="periodichnijTable3">
<tr>
<td colspan="2" class="cell0"><p style="font-family:Arial;"><span style="font-family:arial;">&nbsp; </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>
User avatar
Pablo
 
Posts: 23258
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Horizontal separation in tables

Post by Pablo »

This can be done with 'merge'
Oleksandr
 
 
Posts: 156
Joined: Fri Aug 11, 2023 10:03 am

Re: Horizontal separation in tables

Post by Oleksandr »

how to do it right
when selecting cells that are one under the other, the union is not active
User avatar
BaconFries
 
 
Posts: 5884
Joined: Thu Aug 16, 2007 7:32 pm

Re: Horizontal separation in tables

Post by BaconFries »

Have you read the following Tables
User avatar
Pablo
 
Posts: 23258
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Horizontal separation in tables

Post by Pablo »

You wrote that you want to merge two horizontal cells (to create colspan).
- select the two cells
- click 'merge'

As previously mentioned, rowspan is not supported.
Oleksandr
 
 
Posts: 156
Joined: Fri Aug 11, 2023 10:03 am

Re: Horizontal separation in tables

Post by Oleksandr »

read
There must be some way to do what I need
i need to do a concatenation between rows
User avatar
Pablo
 
Posts: 23258
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Horizontal separation in tables

Post by Pablo »

You can only merge table cells horizontally.

Just like in the code you included in your previous message.

Code: Select all

I need to make it possible to create a table title row for two or more cells that summarizes them like the following
<table style="position:absolute;width:168px;height:168px;" id="periodichnijTable3">
<tr>
<td [b]colspan="2"[/b] class="cell0"><p style="font-family:Arial;"><span style="font-family:arial;">&nbsp; </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>
Post Reply