diff --git a/programs/editor/HOWTO-wodotexteditor.md b/programs/editor/HOWTO-wodotexteditor.md
index 4d6c7a6e1..5e1706dec 100644
--- a/programs/editor/HOWTO-wodotexteditor.md
+++ b/programs/editor/HOWTO-wodotexteditor.md
@@ -16,7 +16,7 @@ The file which needs to be included to create a Wodo.TextEditor is "wodotextedit
-In the body of the HTML there needs to be set a div element which should hold the editor, with a unique id value and a size as wanted.
+In the body of the HTML there needs to be set a
element which should hold the editor, with a unique id value and a size as wanted.
@@ -124,3 +124,22 @@ So it will be listed in "fonts.css" as
1. Why is a document which is hosted on another server not loading?
Web pages with the Wodo.TextEditor must be served with the flag to allow its code to access code from servers in other domains. See https://en.wikipedia.org/wiki/Cross-origin_resource_sharing
+
+2. Why is there just a blank screen?
+
+ Wodo.TextEditor does not enforce a size on the
element which is containing it. So make sure you have set a size on it.
+
+ If that
element is the only element in the webpage and you are setting the size relatively (in "%"), make sure that at least one of the element and the element
+ have an absolute size set, or both a relative size.
+
+ If you want the editor to be full-window, you would set the size on all the element, the element and
+ the
element to be "width: 100%" and "height: 100%", e.g. like this:
+
+ ```html
+
+
+
+
+
+
+ ```