Table in layout grid

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
janez72
 
 
Posts: 81
Joined: Wed Sep 17, 2014 3:33 pm

Table in layout grid

Post by janez72 »

When I put a table in layout grid, text in cells is not visible.
I have to put it outside grid, to be able to edit it.

I don't think it was an issue in previous WB versions.
Can't remember it.
I just installed the latest from 21 series.
User avatar
Pablo
 
Posts: 24544
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Table in layout grid

Post by Pablo »

Did you set a font size?

A layout grid itself resets the font size to zero, so you will to make sure the content has a valid font size
janez72
 
 
Posts: 81
Joined: Wed Sep 17, 2014 3:33 pm

Re: Table in layout grid

Post by janez72 »

I tride to change font, size ... everything. No change.
But when I make a new similar table and put it inside grid, it works perfect.

Below is a html of the non-proper-working table.
Although, it's ok on a preview. Text normaly visible.
Just not inside layout grid in editor.

--------------------------------------------------------------------------------------------------------------------------------------------------------

<table style="display:table;width:100%;height:303px;" id="Table5">
<tr>
<td class="cell0"><span style="color:#000000;font-family:Verdana;font-size:15px;"><strong>Titel</strong></span></td>
<td class="cell0"><span style="color:#000000;font-family:Verdana;font-size:15px;"><strong>Interpret/Author</strong></span></td>
</tr>
<tr>
<td class="cell1"></td>
<td class="cell1"></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=rrVDATvUitA" target="_blank" title="Air-Trauungsmusik">Air</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">J. S. Bach</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=gfsgXJQ0ebU" target="_blank" title="Ballade pour Adeline">Ballade pour Adeline</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Richard Clayderman</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=hOA-2hl1Vbc" target="_blank" title="Hochzeit-musik-canon">Canon in D</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">J. Pachelbel</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=FcOt6mfjxeA" target="_blank" title="Forrest Gump Theme">Forrest Gump Theme</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">A. Silvestri</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=a4sNsGePgs8" target="_blank" title="Hier kommt die Braut">Hier kommt die Braut</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Richard Wagner</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=PXMVkQ70I88" target="_blank" title="Prelude in C - Hochzeitsmusik">Prelude in C</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">J. S. Bach</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=kG9KSWYg-Jc" target="_blank" title="Trauungsmusik - River flows in you">River flows in you</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Yiruma</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=6FxOKTDGuto" target="_blank" title="Tennessee Piano - Einzug - Trauung">Tennessee Piano</a></span></td>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;">Hans Zimmer</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=Fk6Qx9DKEX8" target="_blank" title="Trauungsmarsch">Trauungsmarsch</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Felix Mendelssohn</span></td>
</tr>
</table>
User avatar
Pablo
 
Posts: 24544
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Table in layout grid

Post by Pablo »

You will need to set the font-size for the entire table, not the specific cells.

Code: Select all

<table style="display:table;width:100%;height:303px;font-size:15px" id="Table5">
<tr>
<td class="cell0"><span style="color:#000000;font-family:Verdana;"><strong>Titel</strong></span></td>
<td class="cell0"><span style="color:#000000;font-family:Verdana;"><strong>Interpret/Author</strong></span></td>
</tr>
<tr>
<td class="cell1"></td>
<td class="cell1"></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=rrVDATvUitA" target="_blank" title="Air-Trauungsmusik">Air</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">J. S. Bach</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=gfsgXJQ0ebU" target="_blank" title="Ballade pour Adeline">Ballade pour Adeline</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Richard Clayderman</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=hOA-2hl1Vbc" target="_blank" title="Hochzeit-musik-canon">Canon in D</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">J. Pachelbel</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=FcOt6mfjxeA" target="_blank" title="Forrest Gump Theme">Forrest Gump Theme</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">A. Silvestri</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=a4sNsGePgs8" target="_blank" title="Hier kommt die Braut">Hier kommt die Braut</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Richard Wagner</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;font-size:15px;"><a href="https://www.youtube.com/watch?v=PXMVkQ70I88" target="_blank" title="Prelude in C - Hochzeitsmusik">Prelude in C</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">J. S. Bach</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=kG9KSWYg-Jc" target="_blank" title="Trauungsmusik - River flows in you">River flows in you</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Yiruma</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=6FxOKTDGuto" target="_blank" title="Tennessee Piano - Einzug - Trauung">Tennessee Piano</a></span></td>
<td class="cell2"><span style="color:#000000;font-family:Verdana;">Hans Zimmer</span></td>
</tr>
<tr>
<td class="cell2"><span style="color:#000000;font-family:Verdana;"><a href="https://www.youtube.com/watch?v=Fk6Qx9DKEX8" target="_blank" title="Trauungsmarsch">Trauungsmarsch</a></span></td>
<td class="cell2"><span class="CustomStyle_ALI">Felix Mendelssohn</span></td>
</tr>
</table>
Post Reply