How to enable horizontal scroll bars?« Back to Questions List
How to scroll to the right to see content which is to right of page, and enable horizontal scroll bars. |
Do you have the right answer? If you do other users will benefit from your contribution, share your knowledge with the community!
EASY TO DOAdd the following CSS code using our ${code} tag or connect via an external style sheet using your custom options. /* css code */ body{ overflow-x:scroll; } #content-container{ display:initial; width:initial; } This will enable the horizontal (left to right) scroll bars – you must ensure that you have content that spans beyond the screen to trigger the scroll. External Files Code Tag |
Share Your Knowledge!
Contribute to the community and help other users to benefit from your answer with experience and knowledge.