Hi, I got myself a carousel mod, but I am stuck on one part, I have to add the featured listings in <li> tags which is supplied with the carousel script and the problem is that the code to call the featured listings is for calling 8 listings at once and with all the styles, how would I call these listings individually with a limit? Here is what I have so far: Carousel part in which I am suppose to add the listings: Code: <button class="prev"><<</button> <button class="next">>></button> <div class="anyClass"> <ul> <li><img src="someimage" alt="" width="100" height="100" ></li> <li><img src="someimage" alt="" width="100" height="100" ></li> <li><img src="someimage" alt="" width="100" height="100" ></li> <li><img src="someimage" alt="" width="100" height="100" ></li> </ul> </div> and now my featured listings call: Code: {feature_listings_horizontal number=8 cols=4 table_attr='width="100%" cellpadding="3" cellspacing="3"' td_attr='style="background-color:#d4e3f2; border: 3px #d0d5d9 solid;"' order_by='dateadded' order='desc'} Any ideas how I can accomplish this? Thanks.