Hi, I have a TinyMCE field initialized as follows:
... extended_valid_elements: "ul[type],li,a[name|href|target|title],img[class|src|border|alt|title|hspace|vspace|width|height|align|name|style],hr[class|width|size|noshade],span[class|align|style],iframe[src|class|width|height|name|align],#p/div,strike",
force_br_newlines: true,
mode : "none",
plugins: "autosave",
relative_urls : false,
removeformat_selector: "b,strong,i,em,u,s,strike,del,ins,span,font,sup,sub,pre,tt,code,samp,kbd,var,listing,plaintext,xmp,big,small,abbr,acronym,address,bdo,blockquote,cite,q,defn",
theme : "advanced",
theme_advanced_blockformats: "h1,h2,h3,h4,h5,pre,blockquote",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,fontselect,fontsizeselect,formatselect,forecolor,backcolor,image,link,bullist,numlist,outdent,indent,justifyleft,justifycenter,justifyright,removeformat,fullscreen,code",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_font_sizes: "x-small=1;small=2;normal=3;large=4;x-large=5;xx-large=6",
theme_advanced_fonts: "Sans Serif=sans-serif;Serif=serif;Fixed Width=monospace",
theme_advanced_path: false,
theme_advanced_resize_horizontal : false,
theme_advanced_resizing : true,
theme_advanced_statusbar_location : "bottom",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
width: "100%" ...
The problem is that blockquotes and alignment are not working. I can manually insert the corresponding tags into the html of the field, but using the "Indent" button or align buttons does not insert any tags at all, although their preview shows that they are being indented / aligned.
Anyone know why this might be happening?
Thanks.