0

I need to create a specifci of 600px x 800px dimension and I need the box with its very own scroll bar with custom UI. i dont want to use the browser's scrollbar as that would not gel with the rest of the design. Can anyone help me with this?

2 Answers 2

1

JScrollPane (jQuery plugin) helps you style scrollbars, might be what you need. Read this blog for example and opinion.

More info on Kelvin's site.

Sign up to request clarification or add additional context in comments.

Comments

0

Is it related to jQuery? If not, you can use CSS overflow: scroll in order to have your own scrollbar in a block element such as a div

<div style="width: 800px; height: 600px; overflow: scroll">something</div>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.