jScrollPane horyzontal scrollbar on top
i got set up a jScrollPane horyzontal scrollbar but right now the scro开发者_运维知识库llbar is horyzontal but on top(this means the scrollable content is below the scrollbar), i need the contrary: scrollbar below, scrollable content on top, how can i make this? regards
I'm not sure how you have got the scrollable content below the scrollbar. By default it appears above the scrollbar (e.g. see this example: http://jscrollpane.kelvinluck.com/basic.html ). What version of jScrollPane are you using? Do you have a URL showing the problem?
Update based on the clarifications given below:
You can use CSS to put the scroll bar ABOVE the content. e.g.
.jspHorizontalBar
{
top: 0;
}
.jspPane
{
margin: 16px 0 0;
}
Hope it helps :)
精彩评论