I'm using jQuery Tools Scrollable plugin. I'm trying to make it so that the active frame is in the center of the screen.
I have the Scrollable wrapper set to 100% width and it works great, but the active frame is aligned to the left. What I want is for the active frame to be center. For a better explanation, see this mockup of what I'm trying to achieve.
FYI: This is my structure:
<div class="scrollable">
<div class="prev browse left disabled"></div>
<div class="items">
<div class="pane">
Content
</div>
<div class="pane">
Content
</div>
</div>
<div class="next browse left"></div>
</div>
Thanks!