Support Article
Hide the horizontal scroll bar when browser window is resized
SA-30781
Summary
When user resizes the browser window, then it is displaying the horizontal scroll bar. However as per user standards, they do not want to display the scroll bar when browser window got resized.
Error Messages
Not Applicable
Steps to Reproduce
Configure a form.
Root Cause
A software use or operation error : User requirement.
Resolution
Perform the following local-change:
After applying the below local change in UserWorkForm, now it is displaying as expected:
<style>
@media only screen and (max-width: 500px) {
Body.harnessBody {
overflow-x: hidden !important;
}
}
</style>
Published November 28, 2016 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.