We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 9995
    • 1,613 Posts
    Ur site looks good, i haven’t seen all the above comments actually, my bad on that one.
    Can’t u use seperate tv’s? there must be some workarounds, about "hacking" the tinymce i can’t help u.


      Evolution user, I like the back-end speed and simplicity smiley
      • 2396
      • 101 Posts
      I was having this problem and it was killing me but I think I found how to fix it.

      In the Revo manager under System > System Settings use Filter by area... tinymce and you will find a setting Forced Root Block : tiny.forced_root_block : p

      Just double click on the "p" and delete it... problem solved.
        • 39217
        • 4 Posts
        I'm using Revolution 2.2.0-pl2 (traditional)

        Hey guys I'm also using tinymce in my site manager and was getting frustrated that when I would return to a resource to edit the content in the tinymce editor would appear with extra spacing between elements. It seemed to be adding "<p> </p>" that I hadn't asked it to. Here is my solution which is sort of a mashup of some of the previous posts. In 'System Settings' from the filter dropdown choose 'tinymce', then find the settings below and change them as indicated

        'Convert Newlines to BRs' ==> NO
        'Forced Root Block' ==> LEAVE EMPTY
        'Invalid Elements' ==> br
        'Remove Linebreaks' ==> YES
        'Remove Redundant BRs' ==> YES

        Now with that done the tinymce editor will no longer add extra "<p> </p>" after you save and return to edit your resource later. It will also be prevented from adding
        which was being added automatically in my editor for newlines. It will only add "<p> </p>" when you skip a line by hitting return and only then, this is what I was looking for. Now when you check the code view there are no extra tags.

        One more thing. Each item in the editor is automatically wrapped in <p> tag. <p> tags automatically get margin spacing on top and bottom by default so in order that our user doesn't see a large space between lines that looks larger than normal line spacing we need to find the css file associated with the tinymce editor and add the following css

        p {margin:0; padding:0;}

        My css file was at http://mysite.com/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/content.css

        If you want the top and bottom margin provided on <p> tags by default then you will not want to add this css. I've added this because now my site editors will see the same things on the output page as they do in the editor and not have any undesired extras added during editing or upon returning to a resource to edit. Hope this helps.