Having trouble getting this plugin to work with bootstrap on my website.
Does anyone have a solution for this issue?Alternatively, does anyone know of another approach I could take?
UPDATE:
I managed to fix the problem myself.Add the following code to your script :
$('.mCustomScrollBox').addClass('col-xs-12');
Also, include these CSS rules in your stylesheet:
#posts{
overflow: auto;
position: absolute;
}
Note: the #posts refers to the scrollable div where you want a custom scrollbar.