I developed a page (home page) using the documentation theme, but in some lower resolution monitors the user is not able to see the whole content and the horizontal scroll bar is not present for them to go to the right and see what is missing.
I built the page using sections, columns, panelbox.
Any workaround for this or a way to add a permanent horizontal scroll bar (despite is needed or not?)
Thanks!
@Fabian Lopez
Commenting currently doesn't work so i have to write an answer.
The initial width of the left panel sould be 250px. But a changed width will be saved to a cookie. So if you restart your browser you will get your last defined width.
One thing you can try is to define a minimum width for the left panel. The code for this is:
#splitter #splitter-sidebar { min-width: 300px; }
An other way can be a little bit of CSS. Add this to the global Administrations Stylesheet section.
#splitter #splitter-content { overflow-x: scroll; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks.
Is there a way to set the initial width of the left panel? Or what is the predefined width for that section?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
#splitter #splitter-content .wiki-content .table-wrap { overflow: visible; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hallo Fabian
I'm not sure why the horizontal scroll bar isn't appearing. One workaround is to add a long, thin image at the bottom of the page (try adding it to the footer in the Documentation theme's configuration area.) The image could be just a long white line or something.
I've noticed that wide images seem to reliably force a horizontal scroll bar, where tables sometimes do not.
I hope this helps!
Cheers, Sarah
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.