Tagged Questions
1
vote
1answer
39 views
TinyMCE smaller in IE than in FF -?
I sized my tinyMCE boxes by using the cols and rows attributes of the textarea tag. There's a problem, though - they look how they should in FF 4 and they look very small in IE 8 - does anyone have a ...
1
vote
2answers
871 views
JTextArea - very small size with long text
I'm using a JTextArea to display a long text
JTextArea _definition = new JTextArea(5, 50);
with word-wrap
_definition.setLineWrap(true);
_definition.setWrapStyleWord(true);
embedded in a ...