
Tom P
User

Feb 3, 2012, 12:05 PM
Post #6 of 10
(507 views)
Shortcut
|
|
Re: [JamesKB] Text not displaying correctly
[In reply to]
|
Can't Post
|
|
Hi JamesKB, The line that's setting the size of the font and the associated line height is
#imTextObject_7 { line-height: 1px; font-size: 1pt; font-style: normal; color: black; font-weight: normal; } which you can find in the file index.css (line 59). The div whose id attribute is set to "imTextObject_7", which contains the text, is setting the space between lines of text to 1px and the size of the text itself to 1pt (incidentally, 'pt' a unit which really should only be used for printing purposes, not display purposes). If you change the line-height and font-size to '1em' it should make the text a more readable size. Let me know if this helps, Tom
|