How to get a cursor to start blinking below my table?
I use predefined template’s for insertion of nicely styled tables with example content. Now when I for example insert 2 of those I want to resume editing the rest of the content beneath the tables. However I can’t figure out how to leave the table and type my stuff below a table.
As I’m pressed for time I went for the following workaround:
- Just after the </table> I insert a
in my predefined template
- I added a class to it like this: <br class="tinymcebreak" />
- I hide the line break on the website by adding this style to the stylesheet: br.tinymcebreak { display:none; }
It works very well but introduces some unneeded markup. Maybe there is a better solution out there somewhere?