Merhaba arkadaşlar sitede gördüğünüz gibi slide çok büyük. resimleride otomatik büyütüyor ve görüntüler çok kötü oluyor ama mobiilde çok iyi. Bunu nasıl küçültebilirim ?

http://askmethm.bigaripblog.com/

silder.php kodları
bu slider resimleri 500*300 yapabilirmiyiz

$sl_num = of_get_option('sl_num');
if ( "" != $sl_num ) {
$sl_num = (int)$sl_num;
} else {
$sl_num = 4;
}

$sl_args = array(
'posts_per_page' => $sl_num,
'ignore_sticky_posts' => 1
);
$sl_category = of_get_option( 'sl_category', 'from_all' );

if ( 'from_all' != $sl_category ) {
$sl_args['cat'] = intval( $sl_category );
}
$slider_query = new WP_Query( $sl_args );
$checkthumb = 0;
while ( $slider_query->have_posts() ) : $slider_query->the_post();
if(has_post_thumbnail( $post->ID )){
$checkthumb = 1;
}
endwhile;
if( $slider_query && ( 1 == $checkthumb ) ){
?>


    while ( $slider_query->have_posts() ) : $slider_query->the_post();
    $sl_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'slider-post-thumbnail');
    ?>
    ID )){
    ?>




  • <?php the_title(); ?>



    if ( 'show' == of_get_option('sl_caption')) {
    ?>

    if ( 'hide' != of_get_option('sl_capt_title')) { ?>


    }
    if ( ( 'hide' != of_get_option('sl_capt_exc')) && ( '0' != esc_attr(of_get_option('sl_capt_exc_length')) ) ) {
    $exc_length = (int)esc_attr(of_get_option('sl_capt_exc_length'));
    if ($exc_length <= 0) $exc_length = 20;
    ?>
    $excerpt = get_the_excerpt();
    echo duena_string_limit_words($excerpt,$exc_length);
    ?>

    }
    ?>
    if ( '' != esc_attr(of_get_option('sl_capt_btn_txt')) ) {
    $btn_txt = esc_attr(of_get_option('sl_capt_btn_txt'));
    } else {
    $btn_txt = __( 'Read more', 'duena' );
    }
    ?>



    }
    ?>







<script>
/* jQuery(window).load(function() {
jQuery('.flexslider').flexslider({
animation: "",
direction: "",
slideshow: ,
controlNav: ,
directionNav:
});
});
/* ]]> */
</script>

wp_reset_query();
wp_reset_postdata();
?>