Bottom Scroll Bar
Is there a way to turn off word wrap and keep the bottom scroll bar?
Or turn off the left padding?
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Brett on 24 Sep, 2021 05:43 PM
Hi Mathias,
Just so I understand the question, you want text to continue off the
right side of the display? Like no wrapping of any kind?
-Brett
2 Posted by Mathias on 24 Sep, 2021 05:50 PM
Yes if possible
I want to keep the window to the right partially off the screen
So if I can have the text all the way to the left, that would be preferred
If I had the scroll, I think I could do that
Or if not possible, figure out how to delete the padding on the left side (with the css?)
Support Staff 3 Posted by Brett on 24 Sep, 2021 07:33 PM
Well, I personally wouldn't want to work like this, but add this to
Preferences->Style->Additional CSS (Click Edit CSS and paste):
body {
width: 1000% !important;
}
#wrapper {
margin: 0;
width: 100%;
max-width: 100%!important;
}
Make sure that "Limit text width in Preview" is turned off. Let me know
if that's what you're looking for.
4 Posted by Mathias on 24 Sep, 2021 08:39 PM
Exactly what I wanted, THANKS!