I'm in bit of a pickle here.. So I have rows of divs, think of them as mini boxes. I'm able to scroll through them within a specified width/height area. using : http://manos.malihu.gr/jquery-custom-content-scrollerNow, within one of those Div, I have more content that I'd like to scroll within that Div. And that is where the problem arises. No matter what I do, I just can't achieve it.Here is an example skeleton:\[code\]<style type="text/css"> .rows{ margin:50px auto; width:400px; height:405px; overflow:auto;}.row{ background: lightblue; height: 370px; width: 320px; margin: auto; padding: 10px 10px 10px 10px; margin: 10px 10px 10px 10px;}.column{ float:left;}.columns{ margin:50px auto; width:800px; height:405px; }</style><DIV id="container"> <DIV class="columns"> <DIV class="column"> <DIV class="rows"> <div class="row"></div><div class="row"></div><div class="row"></div> </DIV> </DIV> <DIV class="column"> <DIV class="rows"> <div class="row"></div><div class="row"></div><div class="row"></div> </DIV> </DIV> <DIV class="column"> <DIV class="rows"> <div class="row"></div><div class="row"></div><div class="row"></div> </DIV> </DIV> </DIV></DIV> <link href="http://stackoverflow.com/questions/12810732/css/jquery.mCustomScrollbar.css" rel="stylesheet" type="text/css" /> <script src="http://stackoverflow.com/questions/12810732/js/jquery-1.8.2.min.js"></script> <script src="http://stackoverflow.com/questions/12810732/js/jquery-ui-1.8.21.min.js"></script> <script src="http://stackoverflow.com/questions/12810732/js/jquery.mousewheel.min.js"></script> <script src="http://stackoverflow.com/questions/12810732/js/jquery.mCustomScrollbar.min.js"></script> <script src="http://stackoverflow.com/questions/12810732/js/jquery.easing.1.3.js"></script> <script type='text/javascript'> $(window).load(function(){ $(".rows").mCustomScrollbar({ scrollButtons:{ enable:false } }); }); </script> \[/code\]====================To clarify further, within the div class "row", I'll have lets say a long paragraph that needs to be scrolled within that box.Thanks======================JS/CSS links:\[code\]http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.jshttp://manos.malihu.gr/tuts/custom-scrollbar-plugin/jquery.mousewheel.min.jshttp://manos.malihu.gr/tuts/custom-scrollbar-plugin/jquery.mCustomScrollbar.jshttp://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.jshttp://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.jshttp://manos.malihu.gr/tuts/custom-scrollbar-plugin/jquery.mCustomScrollbar.css\[/code\]