سلام من یه اسلایدر دارم نمی چرخه چی کارش کنم بچرخه با یه سرعت معمولی؟ اینک کدش
_____________
</div>
<div class="box media" style="margin-top: 5px;">
<div class="title">
<?php echo get_option('tabnakweb_gallerytitle'); ?>
</div>
<div class="boxcontent" style="padding: 0">
<div class="base">
<?php query_posts('cat=8' . get_option('tabnakweb_gallerycat') . '&showposts=1' ); ?>
<?php if ( have_posts() ): ?>
<?php while ( have_posts()) : the_post(); ?>
<?php $thumbnail = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post->ID ), "titre"); ?>
<div class="imag">"><img src="<?php $image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src($image_id,'titre', true);
echo $image_url[0]; ?>"/></div>
<div class="desc">"><?php the_title(); ?></div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
</div>
<div style="display: none">
<?php query_posts('cat=8' . get_option('tabnakweb_gallerycat') . '&showposts=6'); ?>
<?php $i=1; if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="c<?php echo $i; ?>" style="display: none">
<?php $thumbnail = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post->ID ), "vip"); ?>
<div class="imag">"><img src="<?php echo $thumbnail[0]; ?>"/></div>
<div class="desc">"><?php the_title(); ?></div>
</div>
<?php $i++; endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<div class="counter">
<div class="prev"><div class="arrow"></div></div>
-
<li class="ac1 active">۱
<li class="ac2">۲
<li class="ac3">۳
<li class="ac4">۴
<li class="ac5">۵
<li class="ac6">۶
<div class="next"><div class="arrow"></div></div>
</div>
<div class="floatfix"></div>
</div>
______________--