I am using the "Nearby Image Partial Visible" slider in my jspx page. The slider works fine except for one issue. The right arrow for navigation does not appear. ALthough my source code is correct, when I run the page the structure is changed. By looking at the HTML DOM of the page, I figured that is because the of the right arrow is nested inside element of the left arrow.
My source code for the arrows is the following-
<span u="arrowleft" class="jssora13l" style="top: 123px; left: 30px;">
</span>
<!-- Arrow Right -->
<span u="arrowright" class="jssora13r" style="top: 123px; right: 30px;">
</span>
<!--#endregion Arrow Navigator Skin End -->
But in the browser the HTML is as follows:
<span u="arrowleft" class="jssora13l" style="top: 123px; left: 30px;">
<!-- Arrow Right -->
<span u="arrowright" class="jssora13r" style="top: 123px; right: 30px;">
</span>
</span>
I cant figure out the issue. Please help.