hi
I m using webhtmleditor 7.3 clr 2.0 build 1058
I want to adjust actually decrease the line spacing coming in between two lines of webhtmleditor. If the user wrote a line presses enter then the space between the previous line and the next line is too much for the user I want to decrease it.
I had searched enough in the help matrial but nothing was there.
Plz help I really need it.
Hello,
I believe this behaviour is caused by the fact that WebHtmlEditor by default uses line breaks <p> (paragraphs) - you can change this behaviour by setting the UseLineBreak property of the editor to True, this should address the issue
<ighedit:WebHtmlEditor ID="WebHtmlEditor1" runat="server" UseLineBreak="True">
Our users initially complained about the double-spacing so we set UseLineBreak to "true." Initially, they were very pleased. Now, they are complaining about the behavior of bullets in the editor, which I believe is a side-effect of setting UseLineBreak to true.
For example, if a user enters six lines of text and hits "enter" after each, the editor will place the bullet on the first line and indent the other 5 lines as part of the first bullet.
The problem appears mainly when bullets are being added to existing text. Another technique to reproduce the effect is to start with a new editor, add 3 lines of text and try to make the last line either bulleted or numbered.