This usually only happens if you don't have an explicit width defined for your "panel" divs. I see you do though in your external CSS. Try defining explicit inline CSS within your panel divs directly, ie:
Code:
<div id="testimonials" class="stepcarousel">
<div class="belt">
<div class="panel" style="width:300px">
<p class="testimonials">Having worked with Adriatic Productions in Zagreb was a memorable experience socially, but especially professionally. There was nothing too daunting for them, including creating a snow peaked mountain and snow covered ground in the middle of the summer in the city.</p>
<h4 class="testimonials">Michel Perez,<br />photographer</h4>
</div>
<div class="panel" style="width:300px">
<p class="testimonials">Working with Maro is like being on Holiday.<br /> He will think of everything before you have !</p>
<h4 class="testimonials">Sylvia Huber,<br />Ypsilon Media Gmbh, Germany</h4>
</div>
<div class="panel" style="width:300px">
<p class="testimonials">Perfectly organized, fun people and of course, great locations!<br />We very much enjoyed the "can-do" attitude. Even our most challenging requests were made possible.</p>
<h4 class="testimonials">Henning Straus<br />Engelbert Strauss Gmbh, Germany</h4>
</div>
<div class="panel" style="width:300px">
<p class="testimonials">NEMA PROBLEMA (no problem) IN CROATIA!</p>
<h4 class="testimonials">Damon MacDonald<br />Nomad Production House, Cape Town, South Africa</h4>
</div>
</div>
</div>
Bookmarks