Evening All!

I'm having a bit of issue with the jScrollPane plugin by Kelvin Luck.
A couple of issues actually!

First, in non-IE browsers the scroll will not apply to the container
specified, even though that container IS wrapped by
the .jScrollContainer div by the script.

Second, the width of the container becomes as wide as the content
without any line breaks??

I'll post code below, and can send private url for those who wish to
see, unfortunately usual client rules apply on this!

Thanks in advance for any help!

Cheers,
Jon

All pretty damn simple but not working in Non-IE browsers?

Main container:
        <div class="wrapper-portfolio-content">
                <h6>Project Name</h6>
                <div id="copy" class="scroll-pane">
                        <p>Project Description</p>
                </div>
        </div>

CSS:
.wrapper-portfolio-content
{
        float: right;
        width: 213px;
        height: 369px;
}

.scroll-pane {
        width: 213px;
        height: 349px;
        overflow: auto;
}

DocReady JS:
//Solution for the scrolling content
        $('.scroll-pane').jScrollPane({
                showArrows: true,
                scrollbarWidth: 16,
                arrowSize: 16
        });


Reply via email to