Есть вот такой шаблон.Если нужно будет скачать то тут При уменьшении масштаба, тоесть при отдалении начинает уезжать слайдер,может кто то знает как это исправить? Вот код слайдера: <?php wp_reset_query(); ?> <?php $args = array('showposts' => $wpzoom_featured_posts_posts, 'orderby' => 'date', 'order' => 'DESC'); $featType = $wpzoom_featured_type; if ($featType == 'Tag') { $args['tag'] = "$wpzoom_featured_slug"; // Breaking tag slug } elseif ($featType == 'Category') { $args['cat'] = "$wpzoom_featured_slug"; // Breaking tag slug } ?> <div id="featPosts" class="box"> <div class="title <?php echo strtolower($wpzoom_featured_posts_color); ?>"><h2><?php _e('Featured Posts','wpzoom');?></h2></div><!-- end .title --> <?php query_posts($args); $i = 0; if ( have_posts() ) : ?> <ul class="posts jcarousel-skin-wpzoom" id="jCarousel"> <?php while (have_posts()) : the_post(); $i++; unset($posttype, $img); $posttype = get_post_meta($post->ID, 'wpzoom_post_type', true); ?> <li> <?php if ( current_theme_supports( 'post-thumbnails' ) && has_post_thumbnail() ) { $thumbURL = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), '' ); $img = $thumbURL[0]; } else { unset($img); if ($wpzoom_cf_use == 'Yes') { $img = get_post_meta($post->ID, $wpzoom_cf_photo, true); } else { if (!$img) { $img = catch_that_image($post->ID); } } } if ($img){ $img = wpzoom_wpmu($img); ?> <div class="cover"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo $img ?>&h=160&w=280&zc=1" width="280" height="160" alt="<?php the_title(); ?>" /></a> <p class="datetime"><?php the_time("M j, Y G:i"); ?></p><?php if ($posttype != 'Default (no icon)' && $posttype) { echo'<span class="'.strtolower($posttype).'"> </span>'; } ?> </div><?php } ?> <h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3> <?php the_excerpt(); ?> <div class="cleaner"> </div> </li> <?php endwhile; // ?> </ul> <?php else : ?> <p class="title"><?php _e('There are no posts in this category', 'wpzoom');?></p> <?php endif; ?> <div class="cleaner"> </div> </div> <?php wp_reset_query(); ?> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#jCarousel').jcarousel({ scroll: 2, visible: 2, wrap: 'circular' }); }); </script>