How can I enlarge my editor dijit so I don't get annoying scroll bars and lots of useless white space? I have tried to dig into the CSS and find a way, but with no success. Unlike many other classes in the JSAPI, the documentation makes no mention of CSS classes to use when styling the dijit.
Solved! Go to Solution.
Hi Michael,
The TemplatePicker class has a CSS property, templatePicker. You can add this to your CSS to adjust the height. Ex:
.templatePicker{
height:800px;
}
Hi Michael,
The TemplatePicker class has a CSS property, templatePicker. You can add this to your CSS to adjust the height. Ex:
.templatePicker{
height:800px;
}
Thank you for that excellent and correct response. It doesn't seem to like percentages for the height, but setting it in absolute pixels works great.