Page 1 of 1

[SOLVED] Cannot add HTML table to Page

Posted: Sun Nov 25, 2012 11:41 pm
by NicoCollu
Hello!

I cannot add the code:

Code: Select all

<table></table>
to my page. It lets me write it in but when I SUBMIT and go back into it to edit, it has disappeared!

Here is my code:
It removes all the table & td elements. Do I need to change something with the settings?

Code: Select all

<div class="maincontent">
<div id="collabslide"> </div>
<div id="collabpagination" class="demo">
<div id="p1" class="collabpage _current">
<h3 class="collabpagheader">Ben West ft. Nico Collu / Clubstyle Party</h3>
<table width="740px" cellspacing="5">
<td align="left" valign="top">
<p>Check out the new Clubstyle Party tracks!<br /> / Sure to get the dancefloor moving TONIGHT!</p>
<h4>Buy them on <a href="https://itunes.apple.com/gb/album/clubstyle-party-feat.-nico/id573490295" target="_blank">iTunes</a> or <a href="http://www.amazon.co.uk/Clubstyle-Party-feat-Nico-Collu/dp/B009YR5BHW/ref=sr_shvl_album_1?ie=UTF8&qid=1353784549&sr=301-1" target="_blank">Amazon</a>!</h4>
<p><strong>Details:</strong><br /> Dance, Electro, Dubstep, Hands-Up!? You name it!<br /> 3 different mixes & 2 amazing remixes from Thom Tree & Agoric!</p>
<p>I hope you enjoy this new release as much as I do &...<br /> Click on the picture on the right to share it on Facebook!</p>
<p><strong>/ Nico Collu</strong></p>
</td>
<td align="right">
<a href="http://www.facebook.com/sharer.php?u=http://www.youtube.com/watch?v=-qIpPsp32u8&list=PLUmPxlKhbhRaOljOfann-Q8vmc1_feXyX&feature=plpp_play_all"> <img src="uploads/images/CollabImages/1.%20Clubstyle%20Party%20[Ben%20West%20Collab]%20[900x900].png" width="300" height="300" align="top" /></a>
</td>
</table>
<__iframe src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F2806312%3Fsecret_token%3Ds-JZK53&show_artwork=true&secret_url=true" frameborder="no" scrolling="no" width="100%" height="380"></__iframe></div>
<div id="p2" class="collabpage" style="display: none;">Nothing here yet! Coming soon!</div>
<div id="p3" class="collabpage" style="display: none;">Nothing here yet! Coming soon!</div>
</div>
<hr />
<div class="title">Various Collabs</div>
<hr />
<div class="subtitle">Show support for all the amazing artists I've collab'ed with!</div>
<ul id="musictabs" class="idTabs">
<li><a href="#sc">Soundcloud</a></li>
<li><a href="#yt">YouTube</a></li>
</ul>
<div id="sc"><__iframe src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F1049108&auto_play=false&show_artwork=true&color=eb5e00" frameborder="no" scrolling="no" width="100%" height="400"></__iframe></div>
<div id="yt"><__iframe src="http://www.youtube.com/embed/videoseries?list=PLD8DEBB8AB22AB870&hl=en_US" frameborder="0" width="100%" height="480px"></__iframe></div>
<hr /><center>
<div class="imgfloath1"><strong>Support these Collabs!</strong></div>
<div class="imgfloath2">...by clicking on the various pictures below!</div>
</center>
<div class="imgfloatbox">
<div class="imgfloatsubbox" style="width: 100%;"><a href="http://www.facebook.com/NicoColluOfficial" target="_blank"><img src="uploads/images/promotion/fb_like.png" alt="" /></a> <a href="https://twitter.com/NicoCollu" target="_blank"><img src="uploads/images/promotion/tw_follow.png" alt="" /></a> <a href="http://soundcloud.com/nicocollu" target="_blank"><img src="uploads/images/promotion/sc_follow.png" alt="" /></a> <a href="http://www.youtube.com/subscription_center?add_user=NicoColluOfficial" target="_blank"><img src="uploads/images/promotion/yt_subscribe.png" alt="" /> </a><a href="http://www.youtube.com/playlist?list=PLD8DEBB8AB22AB870" target="_blank"><img src="uploads/images/promotion/yt_view.png" alt="" /></a> <!-- Img Float Sub Box --></div>
<!-- Img Float Box --></div>
<!-- Main Content Close --></div>

Re: Cannot add HTML table to Page

Posted: Mon Nov 26, 2012 8:16 am
by staartmees
Using TinyMCE: Extensions > TinyMCE WYSIWYG > Profiles > "Allow table operations" must be active.

Re: Cannot add HTML table to Page

Posted: Wed Nov 28, 2012 7:22 pm
by NicoCollu
staartmees wrote:Using TinyMCE: Extensions > TinyMCE WYSIWYG > Profiles > "Allow table operations" must be active.
I can't seem to find that directory.

Where is it exactly?

I am running MicroTiny module and I searched for TinyMCE in the module search and wasn't able to find it at all!

Where'd you get yours? From Forge? Did you install by .xml?

Re: Cannot add HTML table to Page

Posted: Thu Nov 29, 2012 7:41 am
by staartmees
to install TinyMCE

Extensions > Module manager > Available Modules > T > TinyMCE > Download & install

After you have completed the installation, make TinyMCE your default editor

My preferences > my account > user preferences > Select WYSIWYG to use: TinyMCE

Re: Cannot add HTML table to Page

Posted: Mon Dec 03, 2012 3:16 pm
by NicoCollu
staartmees wrote:to install TinyMCE

Extensions > Module manager > Available Modules > T > TinyMCE > Download & install

After you have completed the installation, make TinyMCE your default editor

My preferences > my account > user preferences > Select WYSIWYG to use: TinyMCE
Man, this is really weird.

I tried looking for TinyMCE in that directory before but was unable to find it.

Anyways, I tried all that now but the code still doesn't stay in the page.

It seems like the code is actually ON and working but when I click submit and go back into it to edit, the code isn't there...

Anyone else know what's up?

[EDIT]

The problem was that I was creating a table without the

Code: Select all

<tr></tr> 
element.

I use just

Code: Select all

<td></td>
for news articles and they worked fine but apparently not for this situation.

Works fine now, saves fine etc.