Customizing RTE Plugin
I'm trying to add a custom dropdowns under paraformat which will basically change the text size when its selected just like the heading tags. The format I need to hit is <div class="large-font">.
I tried to create the styles node referred in styles plugin for RTE
<styles
jcr:primaryType="nt:unstructured"
features="*">
<styles jcr:primaryType="cq:WidgetCollection">
<large
jcr:primaryType="nt:unstructured"
cssName="large-font" text="large-font"/>
<medium jcr:primaryType="nt:unstructured"
cssName="medium-font"
text="medium-font"/>
<small jcr:primaryType="nt:unstructured"
cssName="small-font"
text="small-font"/>
</styles>
</styles>
but a blank space shows up in the dropdown at the end. is there anything I am missing. Thanks for any help