I would like to show 4 photo on all each slider but i can get only 1 photo
Is there any different way to show 4 photos side by side on slider?
<div class='slider'>
<ul class='slides'>
<asp:Repeater ID="rpShowcaseAlbum" runat="server">
<ItemTemplate>
<li>
<!-- Showcase Album -->
<div class='span12'>
<a href="album_detay.aspx?ArtistID=<%#Eval("ArtistID") %>">
<div class="photo_frame">
<img src='Admin/uploads/photo/<%#Eval("Photo") %>' style="max-width: 250px; max-height: 250px;" alt='' />
<div class='text'>
<span class='artist'><%#Eval("ArtistName") %></span>
</div>
</div>
</a>
</div>
</li>
</ItemTemplate>
</asp:Repeater>
</ul>
</div>
if (Dt.Rows.Count > 0)
{
rpShowcaseAlbum.DataSource = Dt;
rpShowcaseAlbum.DataBind();
}