1. What code us being outputted on the site? It may be that you have a css reset or something that is removing default underline styling
2. No, but you could add classes. There is also an "approved colour picker" datatype that could be useful?
3. This is a css thing - try something like
ol li {margin-bottom: 10px;}
You can also apply a stylesheet to the RTE so that you see this when editing.
Codeplex ticket 22340 was closed with the reason that underline isn't xhtml strict compliant. However TinyMce handles this by converting it to a span tag with a text-decoration style.
I've opened a new ticket requesting that -span[class|align]' gets changed to '-span[class|align|style]' in 'config/tinyMceConfig.config'.
few layout questions for Richtext Editor
Hi All. I am using Umbraco 4.0.1 and I have some questions about layout.
1. The underline is not working. It works inside the Richtext Editor but when I publish the page, the underline disappears.
2. Anyone know how to add a colour table in the RichText Editor?
3. When I use "ordered list" in the RichText editor, I can not add space between each line.
Thank you for your help in advance.
Hi there
1. What code us being outputted on the site? It may be that you have a css reset or something that is removing default underline styling
2. No, but you could add classes. There is also an "approved colour picker" datatype that could be useful?
3. This is a css thing - try something like
ol li {margin-bottom: 10px;}
You can also apply a stylesheet to the RTE so that you see this when editing.
I added a Wiki to show how to allow all markup in TInyMCE:
http://our.umbraco.org/wiki/how-tos/customizing-the-wysiwyg-rich-text-editor-(tinymce)/allow-any-markup-in-the-tinymce-editor
1. more info for underline http://umbraco.codeplex.com/WorkItem/View.aspx?WorkItemId=22340
Petr
The umbraco.codeplex.com/.../View.aspx?...Id=22340 was not available so I dont know if below information is redundant.
Anyway: There is a "bug" in tinymceConfig.config / <validElements>
-span[class|align] should be -span[class|align|style] to correctly allow tidy to do the proper cleanup.
This also fixes problems pasting underline (<u> </u>) from word.
/Peter
Codeplex ticket 22340 was closed with the reason that underline isn't xhtml strict compliant. However TinyMce handles this by converting it to a span tag with a text-decoration style.
I've opened a new ticket requesting that -span[class|align]' gets changed to '-span[class|align|style]' in 'config/tinyMceConfig.config'.
is working on a reply...