Have seen that this piece of code could solve my problems but I don’t know how or where to apply it to make it work correctly
JScrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your aim is to hide the vertical scroll bar then use the following CSS property…
In your CSS (RRD.css), you have…
Try changing it to…
More changes
And in your
includes/jquery.jscrollpane.csschange…to…
This will remove the extended scrolling that is happening. And make sure your
content-holderwidth is 5880px to match thejspPanescrolling …The vertical scrollbar will not appear as long the content-holder div width is not less than the width of the content inside it. Think all your images in the content-holder div adds up to 5680px + you need to add the padding you apply as well.