Never seen this feature b4 .... but cool!

Posted by webdoktor 
This forum is currently read only. You can not log in or make any changes. This is a temporary situation.
Now, this forum is in read-only mode. You find details Details hereContinue on /r/PirateBox
Never seen this feature b4 .... but cool!
September 02, 2017 01:00PM
If a message in the chat is longer than the available space it's getting it's own scrollbar.
nice +1
Re: Never seen this feature b4 .... but cool!
September 02, 2017 09:10PM
Interesting! Puh, I guess that must be preventable using a CSS option...

BTW: Nice themeing :-)
--

Try the following... find in /opt/piratebox/share/content/css/page_style.css
Language: CSS
#shoutbox { height: 350px; overflow: auto; width: 100%; border: 1px solid #979ea1; border-radius: 3px; margin: 0 0 1em; padding: 0.5em; }

Change it to
Language: CSS
#shoutbox { height: 350px; overflow-y: hidden; overflow-x: auto; width: 100%; border: 1px solid #979ea1; border-radius: 3px; margin: 0 0 1em; padding: 0.5em; }

best regards Matthias