Not sure what you meant, but you can set it to scroll only in overflow, like this:
#something { overflow-x:scroll; }
But you can try to try like this:
#something { overflow-x:auto; }
This will only create scrollbars where you need them.
Of course, you should probably try just removing everything about the overflow-x property, which may also work.
source share