Resource icon

WYSIWYG Page Editor 0.9.2

No permission to download
I tested this with Xenforo 1.2, and I noticed that it has an issue with the bullet point and numeric list. It seems that once you update the page, the lists won't appear anymore?
 
I also noticed that a lot of other elements can disappear as well (spaces, breaks, indentation, font and font size)
 
NICKY, add to EXTRA .css

Code:
.ArticleEXTRA ul li
{
    padding-left:3px;
    margin-left: 30px;
    list-style: square;
}
 
Last edited:
Search:
PHP:
<div id="pageNodeContent" class="sectionMain">
Replace:
PHP:
<div id="pageNodeContent" class="sectionMain">
<div class="messageText baseHtml">
What this does, it just adds the normal page classes in to every page. I decided to only use the "messageText" and "baseHtml".
You would need to also close the </div> I think.

I tried this with the template modification, and found it didn't work, but did work fine if I customised the actual template.
 
Back
Top Bottom