css - Edit height rich:editor tag -


i use jsf, richfaces version:v.3.3.1.ga. want reduce height style of rich:editor tag (use tinymce) it's not change.

<rich:editor id="transactionresult" style="height: 10px;" height="10"     value="#{transactionshome.instance.transactionresult}"     theme="simple" viewmode="visual"> </rich:editor> 

enter image description here enter image description here how can change height or other style of rich:editor tag ?

use important override style.

style="height: 10px !important;" 

for highlighted classes, add following css:

.mcelayout { height: 10px; } 

and iframe:

#iframeid {  height: 20px; } 

replace iframeid iframe id.


Comments