I have a rich:editor field in my xhtml view and it has a default font size of 11. It is like this:
<rich:editor id="editor_value"
configuration="#{editorBean.currentSimpleConfiguration}"
width="560" height="130" viewMode="#{editorBean.viewMode}"
value="#{bean.value}">
I want to change the default font size and make it bigger.
I know that I can do this using "f:param" like:
<rich:editor id="editor_value"
configuration="#{editorBean.currentSimpleConfiguration}"
width="560" height="130" viewMode="#{editorBean.viewMode}"
value="#{bean.value}"/>
<f:param name="font_size" value="13px"/>
</rich:editor>
or putting the assignation "font_size=13px" in my "simple.properties" file (which is referenced in "configuration="#{editorBean.currentSimpleConfiguration}"")
But these solutions are not valid and the font size continues being 11px...
Anyone knows where am I wrong?
Thx a lot