I am using bootstrap image gallery to display images on my website. I have added an extra column for comments (with scrollbar) so that users may comment on photo. Following styling is added to each div element which translates image up/down and right/left direction.
<div class="slide" data-index="0" style="width: 1366px; left: 0px;
transition-duration: 0ms; transform: translate(0px, 0px) translateZ(0px);">
<...Modal Code ...>
Probelm:
When i click on scroll-bar to scroll, whole modal move downwards/upwards due to css transform style applied on slide ( cannot find js code from where this style is appended ).
How i can overcome this problem ??