Subj : BBBS Web Mail Reader
To   : Jeff Smith
From : Kim Heino
Date : Sat Mar 16 2019 12:10 pm

> The saved line length looks to be about 77 character spaces long.

Hard limit is 79 chars per line.

This is actually a hard problem to fix. With small modifications you can make
web interface's textarea to be 79 chars width, which is partial solution.

Both menus/reply.www and menus/enter.www have this line:

<textarea name="msgtext" class="form-control" rows="25">$d</textarea>

Add class "editor" to it, change it to:

<textarea name="msgtext" class="form-control editor" rows="25">$d</textarea>

At end of htdocs/style.css add:

.editor {
   font-family: monospace;
   width: 84ch;
   overflow-y: scroll;
}

This works for me with my browser, but yours can differ. Just remember to press
hard reload is your browser to load new css (ctrl-reload or similar). Next BBBS
version will include above changes.

Does anybody have a better solution?

--- BBBS/Li6 v4.10 Toy-4
* Origin: * BCG-Box, On The Air Since 11th February 1987! * (2:222/2)