By daoane on
When I create content which includes html tables or/and pictures the following happens:
Tables: the content of the table shows up - each table field on a new line with some space inbetween - but not the table itself (It does not matter if TinyMCE is turned on or off or which theme I use).
The html input code:
<pre>
<table border="0">
<tbody>
<tr>
<td>123 </td>
<td>456
</td>
</tr>
<tr>
<td>789
</td>
<td>123
</td>
</tr>
</tbody>
</table>
</pre>
and Drupals output of the same:
<div id="contentwide">
<div class="breadcrumb"><a href="/">Home</a></div> <div class="messages status">
Your <em>Page</em> has been created.</div>
<h2 class="with-tabs">ddddd</h2> <ul class="tabs primary">
<li class="active"><a href="/?q=node/17" class="current">View</a></li>
<li><a href="/?q=node/17/edit">Edit</a></li>
</ul>
<div class="node">
<div class="content clearfix"><p>123<br />
456 </p>
<p> 789 </p>
<p> 123</p>
</div>
</div> <span class="clear"></span>
</div>
Pictures: they do not show up at all, not in the code either. This is true for pictures of any size, within tables and outside.
I'll be grateful for any help!
Henning
Comments
Input format?
Is your input format set to Full HTML? It looks like you're in the Filtered HTML mode.
Solved!
Thank you very much for the tip! This solved all mentioned issues - obvious for some, but I never would have thought about filtering options!
Thanks again.
Cheers,
Henning
thanks!
thanks!
I was having the same problem
Thanks very much for this answer. I was having the same problem and this solved it.